-
Notifications
You must be signed in to change notification settings - Fork 35
/
package.json
43 lines (43 loc) · 1009 Bytes
/
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
{
"name": "webpack-md5-hash",
"version": "0.0.6",
"description": "Plugin to replace a standard webpack chunkhash with md5.",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"clean": "rimraf dist",
"pretest": "jshint",
"test": "jasmine-node --captureExceptions spec"
},
"repository": {
"type": "git",
"url": "https://github.com/erm0l0v/webpack-md5-hash.git"
},
"keywords": [
"webpack",
"hash",
"plugin",
"md5"
],
"author": "Kirill Ermolov",
"contributors": [{
"name": "Sebastien Dubois",
"email": "[email protected]",
"url": "https://www.dsebastien.net"
}],
"license": "MIT",
"bugs": {
"url": "https://github.com/erm0l0v/webpack-md5-hash/issues"
},
"homepage": "https://github.com/erm0l0v/webpack-md5-hash",
"dependencies": {
"@types/webpack": "*",
"md5": "^2.0.0"
},
"devDependencies": {
"argparse": "^1.0.4",
"jasmine-node": "^1.14.5",
"jshint": "^2.8.0",
"rimraf": "^2.5.0"
}
}