-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
executable file
·46 lines (46 loc) · 1.18 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
{
"name": "html-webpack-exclude-assets-plugin",
"version": "0.0.7",
"description": "Add the ability to exclude assets based on RegExp patterns",
"main": "index.js",
"files": [
"index.js"
],
"scripts": {
"prepublish": "npm run test",
"pretest": "semistandard",
"test": "jasmine",
"debug": "node-debug jasmine"
},
"repository": {
"type": "git",
"url": "https://github.com/jamesjieye/html-webpack-exclude-assets-plugin.git"
},
"keywords": [
"webpack",
"plugin",
"html-webpack-plugin",
"exclude",
"assets"
],
"engines": {
"node": ">=4.0.0"
},
"author": "James Ye <james.ye@hotmail.com> (https://github.com/jamesjieye)",
"license": "MIT",
"bugs": {
"url": "https://github.com/jamesjieye/html-webpack-exclude-assets-plugin/issues"
},
"homepage": "https://github.com/jamesjieye/html-webpack-exclude-assets-plugin",
"devDependencies": {
"cheerio": "^0.22.0",
"css-loader": "^0.25.0",
"extract-text-webpack-plugin": "^1.0.1",
"html-webpack-plugin": "^2.16.0",
"jasmine": "^2.4.1",
"rimraf": "^2.5.4",
"semistandard": "^7.0.5",
"style-loader": "^0.13.1",
"webpack": "^1.13.0"
}
}