-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
41 lines (41 loc) · 1021 Bytes
/
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
{
"name": "netlify-push-webpack-plugin",
"version": "1.2.0",
"description": "Generate HTTP2 Server Push headers for Netlify using HtmlWebpackPlugin",
"main": "index.js",
"files": [
"index.js"
],
"repository": {
"type": "git",
"url": "https://github.com/koole/netlify-push-webpack-plugin.git"
},
"keywords": [
"webpack",
"plugin",
"html-webpack-plugin",
"netlify",
"push"
],
"scripts": {
"test": "ava tests/test.js"
},
"author": "Leon Koole <[email protected]> (https://github.com/koole)",
"license": "MIT",
"bugs": {
"url": "https://github.com/koole/netlify-push-webpack-plugin/issues"
},
"homepage": "https://github.com/koole/netlify-push-webpack-plugin",
"peerDependencies": {
"html-webpack-plugin": "^4.0.0",
"webpack": "^4.0.0"
},
"devDependencies": {
"ava": "^3.0.0",
"css-loader": "^5.0.0",
"html-webpack-plugin": "^4.0.0",
"mini-css-extract-plugin": "^1.0.0",
"rimraf": "^3.0.2",
"webpack": "^4.0.0"
}
}