forked from SBoudrias/Inquirer.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 1.94 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "inquirer",
"version": "5.0.1",
"description":
"A collection of common interactive command line user interfaces.",
"author": "Simon Boudrias <[email protected]>",
"files": ["lib"],
"main": "lib/inquirer.js",
"keywords": ["command", "prompt", "stdin", "cli", "tty", "menu"],
"engines": {
"node": ">=6.0.0"
},
"devDependencies": {
"chai": "^4.0.1",
"cmdify": "^0.0.4",
"coveralls": "^3.0.0",
"eslint": "^4.1.0",
"eslint-config-prettier": "^2.4.0",
"eslint-config-xo": "^0.19.0",
"eslint-plugin-prettier": "^2.2.0",
"husky": "^0.14.3",
"lint-staged": "^6.0.0",
"mocha": "^4.0.0",
"mockery": "^2.1.0",
"nsp": "^3.0.0",
"nyc": "^11.3.0",
"prettier": "^1.7.0",
"sinon": "^4.0.0"
},
"scripts": {
"test": "nyc mocha test/**/* -r ./test/before",
"prepublish": "nsp check",
"pretest": "eslint .",
"precommit": "lint-staged",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"repository": "SBoudrias/Inquirer.js",
"license": "MIT",
"dependencies": {
"ansi-escapes": "^3.0.0",
"chalk": "^2.0.0",
"cli-cursor": "^2.1.0",
"cli-width": "^2.0.0",
"external-editor": "^2.1.0",
"figures": "^2.0.0",
"lodash": "^4.3.0",
"mute-stream": "0.0.7",
"run-async": "^2.2.0",
"rxjs": "^5.5.2",
"string-width": "^2.1.0",
"strip-ansi": "^4.0.0",
"through": "^2.3.6"
},
"lint-staged": {
"*.js": ["eslint --fix", "git add"],
"*.json": ["prettier --write", "git add"]
},
"eslintConfig": {
"extends": ["xo", "prettier"],
"env": {
"mocha": true,
"node": true
},
"rules": {
"no-eq-null": "off",
"eqeqeq": [
"error",
"always",
{
"null": "ignore"
}
],
"prettier/prettier": [
"error",
{
"singleQuote": true,
"printWidth": 90
}
]
},
"plugins": ["prettier"]
}
}