forked from webpack-contrib/extract-text-webpack-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
39 lines (39 loc) · 1.07 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
{
"name": "extract-text-webpack-plugin",
"version": "1.0.1",
"author": "Tobias Koppers @sokra",
"description": "Extract text from bundle into a file.",
"peerDependencies": {
"webpack": "^1.9.11"
},
"dependencies": {
"async": "^1.5.0",
"loader-utils": "^0.2.3",
"webpack-sources": "^0.1.0"
},
"devDependencies": {
"codecov.io": "^0.1.2",
"coveralls": "^2.11.2",
"css-loader": "^0.21.0",
"file-loader": "^0.8.4",
"istanbul": "^0.3.13",
"mocha": "^2.3.3",
"mocha-lcov-reporter": "0.0.2",
"raw-loader": "^0.5.1",
"should": "^7.1.1",
"style-loader": "^0.13.0",
"webpack": "^1.12.2"
},
"homepage": "https://github.com/webpack/extract-text-webpack-plugin",
"repository": {
"type": "git",
"url": "https://github.com/webpack/extract-text-webpack-plugin.git"
},
"license": "MIT",
"scripts": {
"test": "mocha",
"travis": "npm run cover -- --report lcovonly",
"cover": "istanbul cover _mocha",
"publish-patch": "mocha && npm version patch && git push && git push --tags && npm publish"
}
}