forked from mzgoddard/hard-source-webpack-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
62 lines (62 loc) · 1.56 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
{
"name": "hard-source-webpack-plugin",
"version": "0.6.4",
"description": "Hard cache the source of modules in webpack.",
"keywords": [
"webpack",
"disk",
"iterative",
"build",
"cache",
"plugin"
],
"main": "index.js",
"files": [
"index.js",
"lib"
],
"repository": {
"type": "git",
"url": "https://github.com/mzgoddard/hard-source-webpack-plugin"
},
"bugs": {
"url": "https://github.com/mzgoddard/hard-source-webpack-plugin/issues"
},
"scripts": {
"test": "mocha tests/*.js"
},
"author": "Michael \"Z\" Goddard <mzgoddard@gmail.com>",
"license": "ISC",
"devDependencies": {
"babel-core": "^6.26.0",
"babel-loader": "^7.1.2",
"babel-preset-env": "^1.6.1",
"chai": "^3.5.0",
"css-loader": "^0.27.0",
"extract-text-webpack-plugin": "^3.0.0 || ^2.0.0 || ^1.0.1",
"file-loader": "^1.0.0 || ^0.11.0 || ^0.10.1",
"html-webpack-plugin": "^2.22.0",
"level": "^2.1.1",
"memory-fs": "^0.4.1",
"mocha": "^3.0.2",
"source-map": "^0.5.6",
"style-loader": "^0.14.0",
"webpack": "^4.0.0 || ^4.0.0-beta.* || ^3.8.1 || ^3.0.0 || ^3.0.0-rc.0 || ^2.1.0 || ^1.13.1",
"webpack-cli": "^1.5.3",
"webpack-isomorphic-tools": "^3.0.0",
"worker-loader": "^1.0.0"
},
"peerDependencies": {
"webpack": "*"
},
"dependencies": {
"lodash": "^4.15.0",
"mkdirp": "^0.5.1",
"node-object-hash": "^1.2.0",
"rimraf": "^2.6.2",
"tapable": "^1.0.0-beta.5",
"webpack-core": "~0.6.0",
"webpack-sources": "^1.0.1",
"write-json-file": "^2.3.0"
}
}