forked from webpack-contrib/extract-text-webpack-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.33 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": "extract-text-webpack-plugin",
"version": "2.1.2",
"author": "Tobias Koppers @sokra",
"description": "Extract text from bundle into a file.",
"engines": {
"node": ">=4.3.0 < 5.0.0 || >= 5.10"
},
"main": "index.js",
"files": [
"schema",
"ExtractedModule.js",
"index.js",
"loader.js",
"OrderUndefinedError.js"
],
"peerDependencies": {
"webpack": "^2.2.0"
},
"dependencies": {
"schema-utils": "^0.3.0",
"async": "^2.1.2",
"loader-utils": "^1.0.2",
"webpack-sources": "^1.0.1"
},
"devDependencies": {
"codecov.io": "^0.1.6",
"coveralls": "^2.11.2",
"css-loader": "^0.28.4",
"file-loader": "^0.11.2",
"istanbul": "^0.4.5",
"mocha": "^3.2.0",
"mocha-lcov-reporter": "1.3.0",
"raw-loader": "^0.5.1",
"should": "^11.1.2",
"standard-version": "^4.1.0",
"style-loader": "^0.18.2",
"webpack": "^2.6.1"
},
"homepage": "http://github.com/webpack-contrib/extract-text-webpack-plugin",
"repository": {
"type": "git",
"url": "http://github.com/webpack-contrib/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)"
}
}