forked from mrvisser/node-corporal
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 999 Bytes
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 999 Bytes
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
49
{
"name": "corporal",
"description": "An extensible interactive shell utility",
"version": "1.2.0",
"homepage": "https://github.com/mrvisser/node-corporal",
"keywords": [
"arguments",
"argv",
"command",
"commands",
"parse",
"shell"
],
"author": {
"name": "Branden Visser",
"email": "mrvisser@gmail.com"
},
"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",
"sprintf-js": "^1.1.2",
"underscore": "^1.13.7"
},
"overrides": {
"glob": "^11.0.0"
},
"devDependencies": {
"mocha": "^11.7.5",
"release-it": "^19.2.4"
},
"engines": {
"node": ">=0.8"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}