-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
36 lines (36 loc) · 844 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
{
"name": "simple-prompt",
"version": "0.2.0",
"homepage": "http://qawemlilo.github.io/prompt",
"description": "Simple CLI prompt for Node",
"main": "./index.js",
"scripts": {
"test": "npm run jshint && node ./node_modules/nodeunit/bin/nodeunit test",
"jshint": "node ./node_modules/jshint/bin/jshint lib/prompt.js ./test/prompt_test.js"
},
"repository": {
"type": "git",
"url": "git://github.com/qawemlilo/prompt.git"
},
"keywords": [
"prompt",
"terminal input",
"commandline",
"cli"
],
"author": {
"name": "Qawelesizwe Mlilo",
"email": "qawemlilo@gmail.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/qawemlilo/prompt/issues"
},
"engines": {
"node": ">= 0.10.0"
},
"devDependencies": {
"nodeunit": "~0.9.0",
"jshint": "~2.5.1"
}
}