-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1.05 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
{
"name": "arg-to-object",
"version": "1.2.3",
"description": "dynamically construct a command line parser based on the object provided to it",
"main": "arg-to-object.js",
"scripts": {
"test": "mocha ./test/test.js",
"test-w-coverage": "./node_modules/istanbul/lib/cli.js cover ./node_modules/mocha/bin/_mocha -- ./test/test.js",
"debug": "nodemon --exec 'npm test'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/matutter/arg-to-object.git"
},
"keywords": [
"dynamic",
"command",
"parser",
"cmd",
"line",
"args",
"argv"
],
"author": "matutter <mcutter.svc@gmail.com> (https://www.npmjs.com/profile/matutter)",
"license": "ISC",
"bugs": {
"url": "https://github.com/matutter/arg-to-object/issues"
},
"homepage": "https://github.com/matutter/arg-to-object#readme",
"devDependencies": {
"chai": "^3.5.0",
"coveralls": "^2.11.11",
"istanbul": "^0.4.4",
"mocha": "^2.5.3"
},
"dependencies": {
"prefix-search": "^1.0.0",
"splitargs": "0.0.7"
}
}