forked from scinos/webpack-plugin-hash-output
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.1 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
{
"name": "webpack-plugin-hash-output",
"version": "1.3.0",
"description": "Plugin for Webpack that uses the final output to compute the hash of an asset",
"main": "src/OutputHash.js",
"scripts": {
"lint": "eslint .",
"test": "eslint . && mocha --reporter spec test/*.js",
"clean": "rm -fr test/tmp"
},
"author": "Sergio Cinos <[email protected]>",
"license": "ISC",
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^3.16.1",
"eslint-config-airbnb-base": "^11.1.1",
"eslint-plugin-import": "^2.2.0",
"eslint-plugin-mocha": "^4.9.0",
"html-webpack-plugin": "^2.28.0",
"mocha": "^3.2.0",
"uglify-js": "^2.8.22",
"uglifyjs-webpack-plugin": "^0.4.2",
"webpack": "^2.4.1"
},
"dependencies": {},
"repository": {
"type": "git",
"url": "https://github.com/scinos/webpack-plugin-hash-output"
},
"keywords": [
"webpack",
"plugin",
"generate",
"asset",
"hash"
],
"bugs": {
"url": "https://github.com/scinos/webpack-plugin-hash-output/issues"
},
"homepage": "https://github.com/scinos/webpack-plugin-hash-output"
}