forked from GoogleChromeLabs/preload-webpack-plugin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.53 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
{
"name": "preload-webpack-plugin",
"version": "2.3.0",
"description": "Enhances html-webpack-plugin with link rel=preload wiring capabilities for scripts",
"main": "index.js",
"scripts": {
"lint": "eslint --quiet -f codeframe index.js test/spec.js",
"lint-fix": "eslint --fix --quiet -f codeframe index.js test/spec.js",
"webpack-v3-t": "node_modules/jasmine/bin/jasmine.js test/webpack-v3.spec.js",
"test": "node_modules/jasmine/bin/jasmine.js test/spec.js && npm run webpack-v3-t"
},
"files": [
"index.js"
],
"repository": {
"type": "git",
"url": "https://github.com/googlechromelabs/preload-webpack-plugin.git"
},
"keywords": [
"webpack",
"plugin",
"html-webpack-plugin",
"script",
"preload",
"resource hints"
],
"author": "Addy Osmani <addy.osmani@gmail.com> (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",
"devDependencies": {
"babel-eslint": "^8.2.2",
"css-loader": "^0.28.10",
"eslint": "^4.18.2",
"eslint-config-google": "^0.9.1",
"extract-text-webpack-plugin": "^4.0.0-beta.0",
"file-loader": "^1.1.11",
"html-webpack-plugin": "^3.0.6",
"jasmine": "^3.1.0",
"webpack": "^4.1.0"
},
"peerDependencies": {
"webpack": "^4.0.1"
},
"dependencies": {
"object-assign": "^4.1.1",
"object.values": "^1.0.4",
"webpack-log": "^1.1.2"
}
}