forked from GoogleChromeLabs/preload-webpack-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.59 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
{
"name": "preload-webpack-plugin",
"version": "3.0.0-beta.4",
"description": "A webpack plugin for injecting <link rel='preload|prefecth'> into HtmlWebpackPlugin pages, with async chunk support",
"author": "Addy Osmani <[email protected]> (https://github.com/addyosmani)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/googlechromelabs/preload-webpack-plugin/issues"
},
"homepage": "https://github.com/googlechromelabs/preload-webpack-plugin",
"repository": {
"type": "git",
"url": "https://github.com/googlechromelabs/preload-webpack-plugin.git"
},
"keywords": [
"webpack",
"plugin",
"html-webpack-plugin",
"script",
"preload"
],
"engines": {
"node": ">=8.0.0"
},
"scripts": {
"lint": "eslint --format=codeframe .",
"test": "jasmine test/unit/* test/webpack*/index.js",
"coverage": "nyc npm run test",
"clean": "rimraf build",
"build": "npm run clean && babel --out-dir=build src",
"publish-stable": "npm run lint && npm run test && npm run build && npm publish",
"publish-next": "npm run lint && npm run test && npm run build && npm publish --tag next"
},
"main": "build/index.js",
"files": [
"build"
],
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"eslint": "^6.2.1",
"eslint-config-google": "^0.13.0",
"jasmine": "^3.4.0",
"jsdom": "^15.1.1",
"memory-fs": "^0.4.1",
"nyc": "^14.1.1",
"rimraf": "^3.0.0"
},
"peerDependencies": {
"html-webpack-plugin": ">=3.0.0",
"webpack": ">=4.0.0"
}
}