-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
executable file
·66 lines (66 loc) · 1.61 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
{
"name": "packing-html-webpack-plugin",
"version": "1.0.0",
"description": "Simplifies creation of HTML files to serve your webpack bundles",
"main": "index.js",
"files": [
"index.js",
"default_index.ejs",
"lib/"
],
"scripts": {
"build-examples": "node examples/build-examples.js",
"test": "jasmine"
},
"repository": {
"type": "git",
"url": "https://github.com/packingjs/packing-html-webpack-plugin.git"
},
"keywords": [
"webpack",
"plugin",
"html",
"html-webpack-plugin"
],
"author": "zhongzhi107",
"license": "MIT",
"bugs": {
"url": "https://github.com/packingjs/packing-html-webpack-plugin/issues"
},
"homepage": "https://github.com/packingjs/packing-html-webpack-plugin",
"semistandard": {
"ignore": [
"examples/*/dist/**/*.*"
]
},
"devDependencies": {
"appcache-webpack-plugin": "^1.2.1",
"css-loader": "^0.23.1",
"dir-compare": "1.0.1",
"es6-promise": "^3.2.1",
"extract-text-webpack-plugin": "^1.0.1",
"file-loader": "^0.9.0",
"html-loader": "^0.4.3",
"jade": "^1.11.0",
"jade-loader": "^0.8.0",
"jasmine": "^2.4.1",
"rimraf": "^2.5.2",
"semistandard": "^8.0.0",
"style-loader": "^0.13.1",
"underscore-template-loader": "^0.7.3",
"url-loader": "^0.5.7",
"webpack": "^1.13.1",
"webpack-recompilation-simulator": "^1.3.0"
},
"dependencies": {
"bluebird": "^3.4.1",
"html-minifier": "^2.1.6",
"loader-utils": "^0.2.15",
"lodash": "^4.13.1",
"pretty-error": "^2.0.0",
"toposort": "^1.0.0"
},
"peerDependencies": {
"webpack": "*"
}
}