-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 1.14 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
{
"name": "simple-coverage-badger",
"version": "0.3.1",
"description": "Simple coverage badger with some customization options",
"main": "lib/badger.js",
"scripts": {
"lint": "eslint lib/**/*.js test/**/*.js",
"test": "mocha",
"coverage": "nyc --reporter=cobertura --reporter=text --reporter=html npm test",
"release": "standard-version"
},
"bin": {
"scb": "index.js"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/Morishiri/simple-coverage-badger.git"
},
"keywords": [
"coverage",
"badge",
"badger",
"cobertura"
],
"author": "Łukasz Sowa <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/Morishiri/simple-coverage-badger/issues"
},
"homepage": "https://github.com/Morishiri/simple-coverage-badger#readme",
"dependencies": {
"fs-extra": "^4.0.2",
"object.values": "^1.0.4",
"xml2js": "^0.4.19",
"yargs": "^15.1.0"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-fs": "^1.0.0",
"eslint": "^4.19.1",
"mocha": "^8.0.1",
"nock": "^9.6.1",
"nyc": "^15.1.0",
"standard-version": "^8.0.2"
}
}