-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
52 lines (52 loc) · 1.28 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
{
"name": "favicon-hash-webpack-plugin",
"version": "2.0.1",
"description": "an extension to add favicon hash for the html-webpack-plugin",
"main": "index.js",
"scripts": {
"test": "NODE_ENV=test mocha test/plugin.spec.js",
"lint": "eslint -f codeframe index.js test/plugin.spec.js",
"lint-fix": "npm run lint -- --fix",
"ci": "npm run lint && npm run test"
},
"files": [
"index.js"
],
"repository": {
"type": "git",
"url": "git+https://github.com/zadzbw/favicon-hash-webpack-plugin.git"
},
"keywords": [
"webpack",
"plugin",
"html-webpack-plugin",
"favicon",
"hash"
],
"author": "zadzbw",
"license": "MIT",
"bugs": {
"url": "https://github.com/zadzbw/favicon-hash-webpack-plugin/issues"
},
"homepage": "https://github.com/zadzbw/favicon-hash-webpack-plugin#readme",
"dependencies": {
"blueimp-md5": "^2.10.0"
},
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^4.17.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.8.0",
"html-webpack-plugin": "^3.2.0",
"memory-fs": "^0.4.1",
"mocha": "^5.0.0",
"webpack": "^4.39.3"
},
"peerDependencies": {
"html-webpack-plugin": ">=3.0.0",
"webpack": ">=4.0.0"
},
"engines": {
"node": ">= 8.0.0"
}
}