-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
53 lines (53 loc) · 1.41 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
{
"name": "html-prefetch-css-webpack-plugin",
"version": "0.1.2",
"description": "prefetch css before dynamic import",
"main": "index.js",
"publishConfig": {
"access": "public"
},
"scripts": {
"dev": "webpack --config ./test/webpack.config.js",
"test": "jest"
},
"peerDependencies": {
"webpack": "^4.6.0",
"html-webpack-plugin": "^3.2.0"
},
"author": "Qiang Sun <[email protected]> (https://github.com/MarvelSQ)",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/MarvelSQ/html-prefetch-css-webpack-plugin.git"
},
"keywords": [
"prefetch",
"html",
"css",
"webpack"
],
"bugs": {
"url": "https://github.com/MarvelSQ/html-prefetch-css-webpack-plugin/issues"
},
"homepage": "https://github.com/MarvelSQ/html-prefetch-css-webpack-plugin#readme",
"dependencies": {
"chalk": "^2.4.1"
},
"devDependencies": {
"css-loader": "^1.0.1",
"eslint": "^5.10.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^7.0.1",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"html-webpack-plugin": "^3.2.0",
"jest": "^23.6.0",
"mini-css-extract-plugin": "^0.4.5",
"prettier-eslint": "^8.8.2",
"style-loader": "^0.23.1",
"webpack": "^4.27.1",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.10"
}
}