forked from webpack-contrib/extract-text-webpack-plugin
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
45 lines (45 loc) · 1.17 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
{
"name": "extract-text-webpack-plugin",
"version": "2.0.0-rc.3",
"author": "Tobias Koppers @sokra",
"description": "Extract text from bundle into a file.",
"engines": {
"node": ">=4.3.0 < 5.0.0 || >= 5.10"
},
"peerDependencies": {
"webpack": "^2.2.0"
},
"dependencies": {
"ajv": "^4.11.2",
"async": "^2.1.2",
"loader-utils": "^0.2.16",
"webpack-sources": "^0.1.0"
},
"devDependencies": {
"codecov.io": "^0.1.2",
"coveralls": "^2.11.2",
"css-loader": "^0.26.1",
"file-loader": "^0.9.0",
"istanbul": "^0.4.5",
"mocha": "^3.2.0",
"mocha-lcov-reporter": "1.2.0",
"raw-loader": "^0.5.1",
"should": "^11.1.2",
"standard-version": "^4.0.0",
"style-loader": "^0.13.0",
"webpack": "^2.2.0"
},
"homepage": "http://github.com/webpack/extract-text-webpack-plugin",
"repository": {
"type": "git",
"url": "http://github.com/webpack/extract-text-webpack-plugin.git"
},
"license": "MIT",
"scripts": {
"test": "mocha",
"travis": "npm run cover -- --report lcovonly",
"cover": "istanbul cover _mocha",
"release": "standard-version",
"build:example": "(cd example && webpack)"
}
}