forked from vuejs/preload-webpack-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
53 lines (53 loc) · 1.46 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": "@vue/preload-webpack-plugin",
"version": "2.0.0",
"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/vuejs/preload-webpack-plugin/issues"
},
"homepage": "https://github.com/vuejs/preload-webpack-plugin",
"repository": {
"type": "git",
"url": "https://github.com/vuejs/preload-webpack-plugin.git"
},
"keywords": [
"webpack",
"plugin",
"html-webpack-plugin",
"script",
"preload",
"resource hints"
],
"engines": {
"node": ">=6.0.0"
},
"scripts": {
"init-project": "yarn && cd test/e2e/webpack4 && yarn",
"lint": "eslint --format=codeframe .",
"test": "npm run lint && node test/copySrc.js && jasmine test/unit/* test/e2e/*/index.js",
"coverage": "nyc npm run test",
"prepublishOnly": "npm run test"
},
"main": "src/index.js",
"files": [
"src"
],
"devDependencies": {
"eslint": "^4.19.1",
"eslint-plugin-vue-libs": "^2.1.0",
"fs-extra": "^9.1.0",
"html-webpack-plugin": "^5.0.0",
"jasmine": "^3.1.0",
"jsdom": "^11.9.0",
"memory-fs": "^0.4.1",
"nyc": "^11.7.1",
"rimraf": "^2.6.2",
"webpack": "^5.20.0"
},
"peerDependencies": {
"html-webpack-plugin": "^5.0.0 || ^4.5.1",
"webpack": "^5.20.0 || ^4.1.0"
}
}