-
-
Notifications
You must be signed in to change notification settings - Fork 167
/
package.json
38 lines (38 loc) · 1009 Bytes
/
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
{
"name": "badges-cli",
"version": "1.2.2",
"description": "A command line tool for generating badges automatically.",
"main": "./tool/lib/index.js",
"scripts": {
"test": "./node_modules/.bin/mocha ./tool/test/ --reporter spec",
"debug": "npm rm -g cls-cli && npm link",
"build": "npm run build:document",
"build:document": "node ./script/setup.js"
},
"bin": {
"badge": "./tool/lib/start.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aleen42/badges.git"
},
"keywords": [
"badges",
"command-line"
],
"author": "aleen42 <[email protected]> (http://aleen42.github.io/pc.html)",
"license": "MIT",
"bugs": {
"url": "https://github.com/aleen42/badges/issues"
},
"homepage": "https://github.com/aleen42/badges#readme",
"dependencies": {
"@ctrl/tinycolor": "3.1.4",
"canvas": "2.11.2",
"node-getopt": "npm:@aleen42/node-getopt"
},
"devDependencies": {
"chai": "3.5.0",
"mocha": "10.3.0"
}
}