-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.11 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
47
48
49
50
{
"name": "badgifier",
"version": "2.2.1",
"description": "Generate badges without third-parties services",
"main": "badgifier.js",
"dependencies": {
"minimist": "^1.2.0",
"xmldoc": "^1.1.0"
},
"devDependencies": {
"istanbul": "^0.4.0",
"snazzy": "^7.0.0",
"standard": "^10.0.3",
"tap-spec": "^4.1.0",
"tape": "^4.2.2"
},
"scripts": {
"start": "node badgifier.js",
"standard": "standard --verbose | snazzy",
"pretest": "npm run standard",
"test:unit": "istanbul cover --report clover ./test/*.js",
"test": "npm run test:unit | tap-spec"
},
"repository": {
"type": "git",
"url": "git+https://github.com/edravis/badgifier.git"
},
"bin": {
"badgifier": "./bin/badgifier.js"
},
"keywords": [
"badge",
"test",
"coding",
"standard",
"istanbul",
"travis",
"coveralls",
"wercker",
"generate",
"automatic",
"insert"
],
"author": "Rubén Sospedra",
"license": "MIT",
"bugs": {
"url": "https://github.com/edravis/badgifier/issues"
},
"homepage": "https://github.com/edravis/badgifier#readme"
}