-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
44 lines (44 loc) · 1.25 KB
/
package.json
File metadata and controls
44 lines (44 loc) · 1.25 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
{
"name": "@iboying/easy-deploy",
"version": "0.4.0",
"description": "A simple deploy tool for based on ssh and node.js",
"main": "dist/easy-deploy.js",
"module": "dist/easy-deploy.esm.js",
"scripts": {
"test": "node test/index.js",
"lint": "eslint src test",
"build": "npm run build:main && npm run build:esm",
"build:main": "rollup -c build/rollup.config.js && uglifyjs dist/easy-deploy.js --compress dead_code=false -m --comments -o dist/easy-deploy.min.js",
"build:esm": "rollup -c build/rollup.config.js --environment ESM"
},
"repository": {
"type": "git",
"url": "git+https://github.com/iboying/easy-deploy.git"
},
"keywords": [
"deploy",
"web"
],
"files": [
"dist/**/*"
],
"author": "iboying",
"license": "MIT",
"dependencies": {
"chalk": "^2.4.2"
},
"devDependencies": {
"babel-core": "^6.26.0",
"babel-preset-env": "^1.7.0",
"eslint": "^7.7.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.17.3",
"eslint-plugin-node": "^9.1.0",
"eslint-plugin-promise": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"rollup": "^0.57.1",
"rollup-plugin-buble": "^0.19.2",
"rollup-plugin-replace": "^2.0.0",
"uglify-js": "^3.3.20"
}
}