forked from shellscape/webpack-manifest-plugin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
53 lines (53 loc) · 1.23 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
{
"name": "webpack-manifest-plugin",
"version": "2.0.4",
"description": "webpack plugin for generating asset manifests",
"main": "index.js",
"scripts": {
"test": "jest",
"codecov": "codecov"
},
"author": "Dane Thurber <[email protected]>",
"license": "MIT",
"engines": {
"node": ">=6.11.5"
},
"peerDependencies": {
"webpack": "2 || 3 || 4"
},
"devDependencies": {
"codecov": "^3.1.0",
"css-loader": "^1.0.0",
"extract-text-webpack-plugin": "^3.0.2",
"file-loader": "^2.0.0",
"jest": "^23.5.0",
"memory-fs": "^0.4.1",
"react": "^16.3.2",
"rimraf": "^2.6.1",
"style-loader": "^0.23.0",
"svgr": "^1.9.2",
"webpack": "^3.12.0"
},
"files": [
"index.js",
"lib"
],
"repository": {
"type": "git",
"url": "https://github.com/danethurber/webpack-manifest-plugin.git"
},
"bugs": {
"url": "https://github.com/danethurber/webpack-manifest-plugin/issues"
},
"homepage": "https://github.com/danethurber/webpack-manifest-plugin",
"dependencies": {
"fs-extra": "^7.0.0",
"lodash": ">=3.5 <5",
"tapable": "^1.0.0"
},
"jest": {
"testEnvironment": "node",
"coverageDirectory": "./coverage/",
"collectCoverage": true
}
}