-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
74 lines (74 loc) · 1.84 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
{
"name": "webpack4-cdn-plugin",
"version": "2.0.0-alpha.0",
"main": "index.js",
"types": "types/index.d.ts",
"description": "Upload your webpack-generated assets to CDN, allowing renaming/rehashing.",
"keywords": [
"webpack",
"webpack4",
"CDN",
"upload",
"rename"
],
"files": [
"build",
"types",
"index.js"
],
"repository": "git+https://github.com/AngusFu/webpack4-cdn-plugin.git",
"author": "wemlion <angusfu1126@qq.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/AngusFu/webpack4-cdn-plugin/issues"
},
"homepage": "https://github.com/AngusFu/webpack4-cdn-plugin#readme",
"peerDependencies": {
"webpack": ">=4.0"
},
"dependencies": {
"chalk": "^2.4.2",
"magic-string": "^0.25.7",
"posthtml": "^0.13.1",
"tslib": "^1.10.0",
"webpack-sources": "^1.3.0"
},
"devDependencies": {
"@commitlint/cli": "7.6.1",
"@commitlint/config-conventional": "7.6.0",
"@types/node": "11.12.0",
"@types/webpack": "4.4.26",
"@types/webpack-sources": "0.1.5",
"commitizen": "3.0.7",
"cz-conventional-changelog": "2.1.0",
"husky": "1.3.1",
"prettier": "1.16.4",
"pretty-quick": "1.10.0",
"standard-version": "5.0.2",
"typescript": "3.3.4000"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "pretty-quick --staged",
"pre-push": "npm run build"
}
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"scripts": {
"commit": "npx git-cz",
"release": "npm run build && npx standard-version",
"format": "pretty-quick --pattern \"**/*.*(ts|js)\"",
"clean": "rm -rf build types",
"build": "npm run clean && tsc"
}
}