forked from mokkabonna/inquirer-autocomplete-prompt
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.26 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
44
45
46
47
48
49
50
{
"name": "inquirer-autocomplete-prompt",
"description": "Autocomplete prompt for inquirer",
"version": "1.0.1",
"files": [
"index.js"
],
"repository": {
"type": "git",
"url": "[email protected]:mokkabonna/inquirer-autocomplete-prompt.git"
},
"publishConfig": {
"registry": "http://registry.npmjs.org"
},
"author": "Martin Hansen <[email protected]>",
"contributors": [
"Karl Horky <[email protected]> (https://github.com/karlhorky)"
],
"engines": {
"node": ">=6.0.0"
},
"license": "ISC",
"devDependencies": {
"chai": "^4.0.1",
"eslint": "^5.1.0",
"flow-bin": "^0.76.0",
"fuzzy": "^0.1.3",
"inquirer": "^6.0.0",
"istanbul": "^0.4.5",
"lodash": "^4.17.4",
"mocha": "^5.0.0",
"prettier": "^1.13.7",
"sinon": "^4.1.2"
},
"dependencies": {
"ansi-escapes": "^3.0.0",
"chalk": "^2.0.0",
"figures": "^2.0.0",
"run-async": "^2.3.0"
},
"peerDependencies": {
"inquirer": "^5.0.0 || ^6.0.0"
},
"scripts": {
"lint": "eslint .",
"pretest": "npm run-script lint && flow",
"test": "istanbul cover ./node_modules/.bin/_mocha test/spec",
"posttest": "istanbul check-coverage --statements 85 --branches 85 --functions 85 --lines 85 && rm -rf coverage"
}
}