-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
88 lines (88 loc) · 2.17 KB
/
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "@planjs/webpack-deploy-plugin",
"version": "0.0.19",
"description": "The webpack plugin handles various uploads of front-end files",
"main": "lib/index.js",
"scripts": {
"prepare": "stan-builder --bundler babel --cjs --runtime -min",
"dev": "npm run prepare -- --watch",
"prepublishOnly": "npm run release",
"release": "./scripts/release.sh",
"lint:fix": "eslint --fix --ext js,ts src",
"test": "jest"
},
"keywords": [
"webpack-plugin",
"planjs",
"oss-upload-tool",
"rsync",
"deploy",
"oss",
"cos",
"webpack-deploy-plugin"
],
"files": [
"lib"
],
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"author": "fupeng <[email protected]> (https://github.com/fupengl)",
"license": "MIT",
"devDependencies": {
"@commitlint/cli": "^16.2.1",
"@commitlint/config-conventional": "^16.2.1",
"@planjs/fabric": "^0.0.91",
"@types/node": "^17.0.21",
"@types/webpack": "^5.28.0",
"babel-jest": "^27.5.1",
"cz-conventional-changelog": "^3.2.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"memfs": "^3.4.1",
"stan-builder": "^0.14.22",
"typescript": "^4.6.2",
"webpack": "^5.70.0",
"webpack-cli": "^4.9.2",
"standard-version": "^9.3.2",
"lint-staged": "^11.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/planjs/webpack-deploy-plugin.git"
},
"homepage": "https://github.com/planjs/webpack-deploy-plugin#readme",
"bugs": "https://github.com/planjs/webpack-deploy-plugin/issues",
"engines": {
"node": ">=6.9"
},
"peerDependencies": {
"webpack": ">=4.0.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix",
"git add"
]
},
"dependencies": {
"@babel/runtime": "^7.17.2",
"multimatch": "5.0.0",
"oss-upload-tool": "latest",
"schema-utils": "^4.0.0",
"shelljs": "^0.8.5",
"@types/shelljs": "^0.8.11"
}
}