-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.3 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.3 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
{
"name": "service-cli",
"version": "1.0.1",
"description": "Service层渐进式增强工具链,用于自动生成Service层代码,管理Mock,提供Ajax数据静态分析",
"main": "src/index.js",
"bin": {
"service-cli": "src/cmd.js"
},
"scripts": {
"dev": "node bin/index.js",
"test": "jest",
"lint:fix": "eslint --fix --cache --ext .js,.jsx,.ts,.tsx --format=pretty ./src"
},
"repository": "https://github.com/wolfstark/service-cli.git",
"author": "wolfstark <1038999405@qq.com>",
"license": "MIT",
"private": false,
"dependencies": {
"@types/lodash": "^4.14.150",
"@types/prettier": "^2.0.0",
"chalk": "^4.0.0",
"commander": "^5.0.0",
"fs-extra": "^9.0.0",
"inquirer": "^7.1.0",
"lodash": "^4.17.15",
"node-fetch": "^2.6.0",
"prettier": "^2.0.5",
"string.prototype.padstart": "^3.1.0",
"translation.js": "^0.7.13",
"typescript": "^3.8.3"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.1.0",
"eslint-config-prettier": "^6.10.1",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-prettier": "^3.1.3",
"http-server": "^0.12.1",
"jest": "^25.4.0"
}
}