forked from sullof/inquirer-command-prompt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.06 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
{
"name": "inquirer-command-prompt",
"version": "0.1.0",
"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]"
},
"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": {
"chalk": "^2.4.2",
"fs-extra": "^8.1.0",
"inquirer": "^7.3.3",
"lodash": "^4.17.19"
},
"devDependencies": {
"babel-eslint": "^10.1.0",
"eslint": "^6.8.0",
"mocha": "^6.2.3",
"sinon": "^7.5.0"
}
}