-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
48 lines (48 loc) · 1010 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
39
40
41
42
43
44
45
46
47
48
{
"name": "corporal",
"description": "An extensible interactive shell utility",
"version": "1.0.0",
"homepage": "https://github.com/mrvisser/node-corporal",
"keywords": [
"arguments",
"argv",
"command",
"commands",
"parse",
"shell"
],
"author": {
"name": "Branden Visser",
"email": "[email protected]"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/mrvisser/node-corporal.git"
},
"bugs": {
"url": "https://github.com/mrvisser/node-corporal/issues"
},
"main": "./index.js",
"scripts": {
"release": "release-it",
"test": "mocha tests/**.js"
},
"dependencies": {
"colors": "^1.4.0",
"optimist": "^0.6.0",
"readcommand": "^0.4.0",
"sprintf-js": "^1.1.2",
"underscore": "^1.13.1"
},
"devDependencies": {
"mocha": "^9.0.1",
"release-it": "^14.10.0"
},
"engines": {
"node": ">=0.8"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}