-
Notifications
You must be signed in to change notification settings - Fork 105
/
package.json
70 lines (70 loc) · 2.26 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"name": "script-ext-html-webpack-plugin",
"version": "2.1.5",
"description": "Enhances html-webpack-plugin functionality with async and defer attributes for script elements",
"main": "index.js",
"files": [
"index.js",
"lib/"
],
"scripts": {
"pretest": "semistandard & install-module-versions dynavers.json",
"test": "npm run test:webpack1 && npm run test:webpack2 && npm run test:webpack3 && npm run test:webpack4 && npm run test:webpack4htmlPlugin4",
"test:webpack1": "cross-env VERSION=webpack1 HWP_VERSION=hwp3 jasmine",
"test:webpack2": "cross-env VERSION=webpack2 HWP_VERSION=hwp3 jasmine",
"test:webpack3": "cross-env VERSION=webpack3 HWP_VERSION=hwp3 jasmine",
"test:webpack4": "cross-env VERSION=webpack4 HWP_VERSION=hwp3 jasmine",
"test:webpack4htmlPlugin4": "cross-env VERSION=webpack4 HWP_VERSION=hwp4 jasmine",
"debug": "cross-env DEBUG=ScriptExt VERSION=webpack4 HWP_VERSION=hwp4 jasmine",
"node-debug": "cross-env DEBUG=ScriptExt VERSION=webpack4 HWP_VERSION=hwp4 node-debug jasmine"
},
"repository": {
"type": "git",
"url": "https://github.com/numical/script-ext-html-webpack-plugin.git"
},
"keywords": [
"webpack",
"plugin",
"html-webpack-plugin",
"async",
"defer",
"inline",
"script",
"module",
"resource hints",
"prefetch",
"preload",
"dynamic script",
"async script"
],
"author": "Mike Evans <[email protected]> (https://github.com/numical)",
"license": "MIT",
"css-loader": "^1.0.1",
"bugs": {
"url": "https://github.com/numical/script-ext-html-webpack-plugin/issues"
},
"homepage": "https://github.com/numical/script-ext-html-webpack-plugin",
"dependencies": {
"debug": "^4.2.0"
},
"devDependencies": {
"cross-env": "^7.0.2",
"dynavers": "^0.3.1",
"handlebars": "^4.7.6",
"handlebars-loader": "1.7.1",
"jasmine": "^3.6.2",
"jasmine-spec-reporter": "^6.0.0",
"jasmine2-custom-message": "^0.9.3",
"rimraf": "^3.0.2",
"semistandard": "^14.2.3",
"uglifyjs-webpack-plugin": "^2.2.0",
"webpack-config": "7.5.0"
},
"peerDependencies": {
"webpack": "^1.0.0 || ^2.0.0 || ^3.0.0 || ^4.0.0",
"html-webpack-plugin": "^3.0.0 || ^4.0.0"
},
"engines": {
"node": ">=6.11.5"
}
}