forked from jantimon/html-webpack-harddisk-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 1.58 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 1.58 KB
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
{
"name": "html-webpack-harddisk-plugin",
"version": "1.0.2",
"description": "Write html files to hard disk even when using the webpack dev server or middleware",
"main": "index.js",
"types": "index.d.ts",
"files": [
"index.js",
"index.d.ts"
],
"scripts": {
"prepublish": "npm run test",
"pretest": "semistandard",
"test": "jasmine",
"commit": "git-cz",
"release": "standard-version",
"debug": "node-debug jasmine"
},
"repository": {
"type": "git",
"url": "https://github.com/jantimon/html-webpack-harddisk-plugin.git"
},
"keywords": [
"webpack",
"plugin",
"html-webpack-plugin",
"disk",
"template"
],
"author": "Jan Nicklas <j.nicklas@me.com> (https://github.com/jantimon)",
"license": "MIT",
"bugs": {
"url": "https://github.com/jantimon/html-webpack-harddisk-plugin/issues"
},
"homepage": "https://github.com/jantimon/html-webpack-harddisk-plugin",
"devDependencies": {
"@types/webpack": "^4.4.16",
"commitizen": "3.0.2",
"cz-conventional-changelog": "2.1.0",
"html-webpack-plugin": "^3.2.0",
"jasmine": "^3.2.0",
"memory-fs": "^0.4.1",
"rimraf": "^2.6.2",
"semistandard": "^12.0.1",
"standard-version": "8.0.1",
"webpack": "^4.20.2"
},
"peerDependencies": {
"html-webpack-plugin": "^2.0.0 || ^3.0.0 || ^4.0.0",
"webpack": "^1.0.0 || ^2.0.0 || ^3.0.0 || ^4.0.0"
},
"dependencies": {
"mkdirp": "^0.5.1"
},
"engines": {
"node": ">=6.9"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
}
}