-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
37 lines (37 loc) · 803 Bytes
/
Copy pathpackage.json
File metadata and controls
37 lines (37 loc) · 803 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
{
"name": "commander-starter",
"version": "0.0.1",
"description": "Starter app for creating command line tools in node",
"main": "index.js",
"bin": {
"cli": "./bin/cli"
},
"scripts": {
"test": "mocha"
},
"repository": {
"type": "git",
"url": "git@github.com:tsantef/commander-starter.git"
},
"keywords": [
"cli"
],
"author": "Tim Santeford",
"license": "MIT",
"bugs": {
"url": "https://github.com/tsantef/commander-starter/issues"
},
"homepage": "https://github.com/tsantef/commander-starter",
"dependencies": {
"commander": "^2.3.0",
"prompt": "^0.2.14",
"request": "^2.44.0",
"cli-table": "^0.3.0",
"colors": "^0.6.2"
},
"devDependencies": {
"mocha": "^1.21.4",
"sinon": "^1.10.3",
"chai": "^1.9.2"
}
}