-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
63 lines (63 loc) · 1.51 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
{
"name": "webpack-retry-load-plugin",
"version": "1.1.6",
"description": "auto load retry resource from other domain",
"main": "src/index.js",
"scripts": {
"release": "standard-version",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hxfdarling/webpack-retry-load-plugin.git"
},
"author": "zman",
"license": "ISC",
"bugs": {
"url": "https://github.com/hxfdarling/webpack-retry-load-plugin/issues"
},
"homepage": "https://github.com/hxfdarling/webpack-retry-load-plugin#readme",
"dependencies": {
"@babel/core": "^7.1.6",
"@babel/preset-env": "^7.1.6",
"fastparse": "^1.1.2"
},
"peerDependencies": {
"webpack-sources": "*",
"webpack": "*",
"html-webpack-plugin": "*"
},
"devDependencies": {
"commitlint-config-imt": "0.0.4",
"eslint-config-zman": "^0.0.9",
"husky": "^1.2.1",
"lint-staged": "^8.1.0",
"prettier": "^1.15.3",
"standard-version": "^4.4.0"
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
},
"cz-customizable": {
"config": "node_modules/commitlint-config-imt/cz-config.js"
}
},
"husky": {
"hooks": {
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS",
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.{json,css,scss,md}": [
"prettier --write",
"git add"
],
"*.{jsx,js}": [
"prettier --write",
"eslint --fix",
"git add"
]
}
}