-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.15 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
{
"name": "@jarzzzi/resourcehints-webpack-plugin",
"version": "1.0.1",
"description": "webpack plugin for resource hints",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/Jarweb/resourcehints-webpack-plugin.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/Jarweb/resourcehints-webpack-plugin/issues"
},
"homepage": "https://github.com/Jarweb/resourcehints-webpack-plugin#readme",
"keywords": [
"webpack",
"plugin",
"html-webpack-plugin",
"script",
"preload",
"prefetch",
"cdn-prefetch",
"preconnect"
],
"scripts": {
"clean": "rimraf build",
"build": "npm run clean && babel src --out-dir=dist --presets=@babel/env",
"publish-stable": "npm run build && npm publish --access=public",
"publish-next": "npm run build && npm publish --tag next --access=public"
},
"peerDependencies": {
"html-webpack-plugin": ">=4.0.0",
"webpack": ">=4.0.0",
"lodash": "^4.17.15"
},
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/preset-env": "^7.9.0",
"rimraf": "^3.0.2"
}
}