-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
58 lines (58 loc) · 1.41 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
51
52
53
54
55
56
57
58
{
"name": "badge-up",
"version": "2.3.0",
"description": "A module that produces hot badges without the need of Cairo",
"main": "index.js",
"nyc": {
"reporter": [
"lcov",
"text"
]
},
"scripts": {
"lint": "eslint .",
"test": "nyc --report-dir ./artifacts/coverage mocha --color true",
"semantic-release": "semantic-release pre && npm publish && semantic-release post"
},
"repository": {
"type": "git",
"url": "[email protected]:yahoo/badge-up.git"
},
"homepage": "https://github.com/yahoo/badge-up",
"engines": {
"node": ">=10.0.0"
},
"bugs": "https://github.com/yahoo/badge-up/issues",
"keywords": [
"badge",
"yahoo"
],
"license": "BSD-3-Clause",
"author": "St. John Johnson <[email protected]>",
"contributors": [
"Darren Matsumoto <[email protected]>",
"Drew Folta <[email protected]>",
"Noah Katzman <[email protected]>",
"Peter Peterson <[email protected]>",
"Robert Ames <[email protected]>"
],
"release": {
"debug": false,
"verifyConditions": {
"path": "./node_modules/semantic-release/src/lib/plugin-noop.js"
}
},
"devDependencies": {
"chai": "^4.2.0",
"coveralls": "^3.0.11",
"eslint": "^6.8.0",
"mocha": "^7.1.1",
"nyc": "^15.0.0",
"sinon": "^9.0.1"
},
"dependencies": {
"css-color-names": "~1.0.1",
"dot": "^1.1.3",
"svgo": "^1.3.2"
}
}