forked from jantimon/favicons-webpack-plugin
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
68 lines (68 loc) · 1.77 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "app-manifest-webpack-plugin",
"version": "1.2.2",
"description": "Let webpack generate manifest files, all your favicons and icons for you",
"author": "Roman Olin <[email protected]> (https://github.com/romanlex)",
"repository": {
"type": "git",
"url": "https://github.com/romanlex/app-manifest-webpack-plugin.git"
},
"main": "index.js",
"files": [
"index.js",
"lib"
],
"scripts": {
"lint": "eslint --ext .js lib test",
"prepublishOnly": "npm run test",
"posttest": "npm run lint",
"test": "ava"
},
"keywords": [
"webpack",
"plugin",
"html-webpack-plugin",
"manifest",
"favicon",
"icon"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/romanlex/app-manifest-webpack-plugin/issues"
},
"homepage": "https://github.com/romanlex/app-manifest-webpack-plugin",
"devDependencies": {
"ava": "^0.25.0",
"babel-eslint": "^8.2.3",
"denodeify": "^1.2.1",
"dir-compare": "^1.4.0",
"eslint": "^4.19.1",
"eslint-config-prettier": "^2.9.0",
"eslint-config-semistandard": "^12.0.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.12.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-prettier": "^2.6.0",
"eslint-plugin-promise": "^3.8.0",
"eslint-plugin-standard": "^3.1.0",
"express": "^4.16.3",
"html-webpack-plugin": "4.0.0-beta.5",
"memory-fs": "^0.4.1",
"shelljs": "^0.8.2",
"prettier": "^1.13.4",
"rimraf": "^2.6.2",
"semistandard": "^12.0.1",
"webpack": "^4.10.2",
"webpack-dev-middleware": "^3.1.3"
},
"dependencies": {
"favicons": "^5.1.1",
"loader-utils": "^1.1.0"
},
"peerDependencies": {
"webpack": "^2.0.0 || ^3.0.0 || ^4.0.0"
},
"engines": {
"node": ">=6.14.1"
}
}