-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
38 lines (38 loc) · 983 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": "argh",
"version": "0.1.4",
"description": "light weight option/argv parser for node, it only parses options, nothing more then that.",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha --reporter spec --ui bdd test.js",
"watch": "mocha --watch --reporter spec --ui bdd test.js",
"coverage": "istanbul cover ./node_modules/.bin/_mocha -- --reporter spec --ui bdd test.js",
"test-travis": "istanbul cover node_modules/.bin/_mocha --report lcovonly -- --reporter spec --ui bdd test.js"
},
"repository": {
"type": "git",
"url": "[email protected]:3rd-Eden/argh.git"
},
"keywords": [
"argument",
"args",
"option",
"parser",
"cli",
"argv",
"options",
"command",
"command-line"
],
"author": "Arnout Kazemier",
"license": "MIT",
"devDependencies": {
"assume": "~2.2.0",
"istanbul": "~0.4.5",
"mocha": "~6.1.4",
"pre-commit": "~1.2.0"
}
}