| 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
 | | { |  |   "name": "@vue/preload-webpack-plugin", |  |   "version": "1.1.2", |  |   "description": "A webpack plugin for injecting <link rel='preload|prefecth'> into HtmlWebpackPlugin pages, with async chunk support", |  |   "author": "Addy Osmani <addy.osmani@gmail.com> (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": { |  |     "lint": "eslint --format=codeframe .", |  |     "test": "npm run lint && 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", |  |     "html-webpack-plugin": "^3.2.0", |  |     "jasmine": "^3.1.0", |  |     "jsdom": "^11.9.0", |  |     "memory-fs": "^0.4.1", |  |     "nyc": "^11.7.1", |  |     "rimraf": "^2.6.2", |  |     "webpack": "^4.0.0" |  |   }, |  |   "peerDependencies": { |  |     "html-webpack-plugin": ">=2.26.0", |  |     "webpack": ">=4.0.0" |  |   } |  | } | 
 |