forked from pastelsky/clean-webpack-plugin
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 951 Bytes
/
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
{
"name": "clean-webpack-plugin",
"version": "0.1.13",
"author": "John Agan <johnagan@gmail.com>",
"description": "A webpack plugin to remove your build folder(s) before building",
"homepage": "https://github.com/johnagan/clean-webpack-plugin",
"licenses": "MIT",
"main": "index.js",
"keywords": [
"webpack",
"plugin",
"clean",
"node"
],
"repository": {
"type": "git",
"url": "https://github.com/johnagan/clean-webpack-plugin.git"
},
"bugs": {
"url": "https://github.com/johnagan/clean-webpack-plugin/issues"
},
"scripts": {
"test": "mocha --recursive ./test/*_spec.js",
"test:watch": "npm run test -- --watch",
"test-travis": "istanbul cover _mocha -- -R spec ./test/*_spec.js"
},
"dependencies": {
"rimraf": "~2.5.1"
},
"devDependencies": {
"chai": "^3.4.1",
"coveralls": "^2.11.6",
"istanbul": "^0.4.2",
"mocha": "^2.4.2",
"rewire": "^2.5.1"
}
}