-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.09 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.09 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
44
45
46
47
48
{
"name": "deploy-plus",
"version": "1.4.0",
"description": "一键自动化打包,部署前端代码到远程服务器",
"main": "lib/service.js",
"homepage": "https://github.com/chenchenwuai/deploy-plus",
"author": {
"name": "chenwuai"
},
"keywords": [
"deploy",
"deploy-plus",
"dist",
"auto-deploy"
],
"bin": {
"deploy-plus": "bin/deploy-plus.js"
},
"scripts": {
"lint": "eslint --fix",
"test": "jest",
"test:coverage": "jest --coverage",
"release": "standard-version"
},
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/chenchenwuai/deploy-plus"
},
"dependencies": {
"archiver": "^5.0.2",
"chalk": "^4.1.0",
"commander": "^6.1.0",
"inquirer": "^7.3.3",
"minimist": "^1.2.5",
"node-rsa": "^1.1.1",
"node-ssh": "^11.0.0",
"ora": "^5.1.0",
"prettier": "^2.6.2"
},
"devDependencies": {
"eslint": "^7.32.0 || ^8.2.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.25.2",
"jest": "^29.7.0",
"standard-version": "^9.5.0"
}
}