-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
42 lines (42 loc) · 967 Bytes
/
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
{
"name": "@rafong/publish",
"description": "web端项目发布工具",
"version": "0.0.32",
"private": false,
"bin": {
"publish": "./bin/app.js"
},
"main": "./bin/app.js",
"files": [
"bin/"
],
"scripts": {
"test": "node bin/app.js",
"cli": "node bin/app.js",
"build": "webpack --mode=production",
"dev": "webpack --mode=development --watch",
"prepublish": "npm run build"
},
"dependencies": {
"chalk": "3.0.0",
"inquirer": "7.0.0",
"node-ssh": "^10.0.2"
},
"license": "MIT",
"engines": {
"node": ">=10.15.0"
},
"devDependencies": {
"@babel/core": "^7.17.2",
"@babel/preset-env": "^7.16.11",
"babel-loader": "^8.2.3",
"grunt": "^1.4.1",
"grunt-babel": "^8.0.0",
"grunt-contrib-concat": "^2.0.0",
"grunt-contrib-uglify": "^5.0.1",
"grunt-contrib-watch": "^1.1.0",
"load-grunt-tasks": "^5.1.0",
"webpack": "^5.68.0",
"webpack-cli": "^4.9.2"
}
}