-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.04 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.04 KB
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": "km_cli",
"version": "1.1.0",
"description": "node cli demo",
"main": "index.js",
"scripts": {
"lint": "npm run lint:es && npm run lint-fix",
"lint:es": "eslint ./ --ext '.js,.jsx'",
"lint-fix": "eslint --fix ./ --ext '.js'"
},
"bin": {
"km": "./bin/km.js"
},
"keywords": [
"cli"
],
"author": "枯荣 <panjiankang@cai-inc.com>",
"license": "ISC",
"devDependencies": {
"babel-eslint": "^8.2.6",
"commander": "^2.19.0",
"debug": "^4.1.0",
"eslint": "^4.18.2",
"eslint-config-airbnb": "^16.1.0",
"eslint-loader": "^2.1.0",
"eslint-plugin-babel": "^4.1.2",
"eslint-plugin-compat": "^2.5.1",
"eslint-plugin-import": "^2.13.0",
"eslint-plugin-jsx-a11y": "^6.1.2",
"eslint-plugin-react": "^7.11.1"
},
"dependencies": {
"chalk": "^2.4.1",
"clear": "^0.1.0",
"clui": "^0.3.6",
"figlet": "^1.2.1",
"fs-extra": "^6.0.1",
"inquirer": "^6.2.1",
"launch-editor": "^2.2.1",
"lodash": "^4.17.11",
"string.prototype.padstart": "^3.0.0"
}
}