forked from 75lb/command-line-commands
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.09 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.09 KB
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
{
"name": "command-line-commands",
"author": "Lloyd Brookes <75pound@gmail.com>",
"version": "2.0.1",
"description": "Add a git-like command interface to your app.",
"repository": "https://github.com/75lb/command-line-commands.git",
"license": "MIT",
"main": "lib/command-line-commands.js",
"files": [
"lib"
],
"keywords": [
"argv",
"parse",
"argument",
"args",
"option",
"parser",
"parsing",
"cli",
"command",
"commands",
"line"
],
"engines": {
"node": ">=4.0.0"
},
"scripts": {
"test": "test-runner --files test/*.js",
"docs": "jsdoc2md -t jsdoc2md/README.hbs lib/*.js > README.md; echo",
"cover": "istanbul cover ./node_modules/.bin/test-runner -- --files test/*.js && cat coverage/lcov.info | ./node_modules/.bin/coveralls && rm -rf coverage; echo"
},
"dependencies": {
"array-back": "^2.0.0"
},
"devDependencies": {
"command-line-args": "^4.0.6",
"command-line-usage": "^4.0.0",
"coveralls": "^2.13.1",
"jsdoc-to-markdown": "^3.0.0",
"minimist": "^1.2.0",
"test-runner": "^0.4.0"
}
}