forked from sullof/inquirer-command-prompt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
43 lines (43 loc) · 1.19 KB
/
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
{
"name": "inquirer-command-prompt",
"version": "0.0.9",
"license": "MIT",
"scripts": {
"lint": "eslint -c .eslintrc 'src/*.js' 'test/*.js'",
"build": "babel ./src/index.js --out-file ./build/index.js",
"test": "mocha test"
},
"description": "A command prompt with history and autocomplete.",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/sullof/inquirer-command-prompt.git"
},
"author": {
"name": "Francesco Sullo",
"email": "[email protected]"
},
"contributors": {
"name": "Filmos",
"url": "http://filmos.net/"
},
"inspiredBy": "https://github.com/SBoudrias/Inquirer.js/issues/306#issuecomment-252516909 by Allen Kim (https://github.com/allenhwkim)",
"bugs": {
"url": "https://github.com/sullof/inquirer-command-prompt/issues"
},
"homepage": "https://github.com/sullof/inquirer-command-prompt#readme",
"dependencies": {
"bluebird": "^3.5.0",
"chalk": "^1.1.3",
"ellipsize": "0.0.3",
"inquirer": "^5.2.0",
"lodash": "^4.17.10",
"preferences": "^0.2.1"
},
"devDependencies": {
"chai": "^3.4.1",
"eslint": "^4.19.1",
"mocha": "^5.1.1",
"sinon": "^5.0.7"
}
}