-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 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
{
"name": "shon",
"description": "A JavaScript command-line argument parser",
"author": "Kris Kowal <[email protected]>",
"version": "3.0.5",
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kriskowal/shon.git"
},
"keywords": [
"argument",
"parser",
"command"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/kriskowal/shon/issues"
},
"homepage": "https://github.com/kriskowal/shon#readme",
"main": "./command.js",
"bin": {
"shon": "bin/shon.js",
"usage2json": "bin/usage2json.js"
},
"devDependencies": {
"faucet": "0.0.1",
"istanbul": "^0.3.21",
"opn-cli": "^1.0.0",
"pegjs": "^0.9.0",
"tape": "^4.2.0"
},
"dependencies": {
"camelcase": "^1.2.1",
"rezult": "^1.1.0"
},
"scripts": {
"test": "npm run build-parser -s && node test",
"cover": "istanbul cover --report html --print node test/index.js -- --color | faucet && istanbul report text",
"view-cover": "opn coverage/index.html",
"build-parser": "pegjs --cache --allowed-start-rules line,document usage.pegjs usage-parser.js"
}
}