-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
46 lines (46 loc) · 1015 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
{
"name": "command-asker",
"description": "Easy way to interact with the user through the command line.",
"version": "0.3.2",
"homepage": "http://github.com/tsunammis/command-asker.js",
"keywords": [
"command",
"interactive",
"cli",
"ask"
],
"author": {
"name": "Stan Chollet",
"email": "stanislas.chollet@gmail.com"
},
"main": "index.js",
"bugs": {
"url": "http://github.com/tsunammis/command-asker.js/issues"
},
"repository": {
"type": "git",
"url": "http://github.com/tsunammis/command-asker.js.git"
},
"scripts": {
"test": "./node_modules/.bin/mocha test/ --reporter spec"
},
"dependencies": {
"cli-color": "~0.3.2",
"lodash": "^3.5.0",
"object-assign": "^2.0.0",
"when": "^3.7.2"
},
"devDependencies": {
"chai": "^2.1.2",
"mocha": "^2.2.1"
},
"engines": {
"node": ">= 0.10"
},
"licenses": [
{
"type": "MIT",
"url": "http://github.com/tsunammis/command-asker.js/LICENSE"
}
]
}