This repository has been archived by the owner on Mar 23, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 20
/
package.json
55 lines (55 loc) · 1.48 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
{
"name": "webpack-cleanup-plugin",
"version": "0.5.1",
"description": "Plugin for webpack to cleanup extraneous files from the output path directory",
"main": "./lib/WebpackCleanupPlugin.js",
"engines": {
"node": ">= 4"
},
"files": [
"lib"
],
"scripts": {
"clean": "rimraf lib",
"build": "babel ./src -d ./lib --source-maps",
"prepublish": "npm run clean && npm run build",
"lint": "eslint src",
"test": "mocha --compilers js:babel-register --require ./test/setup.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/gpbl/webpack-cleanup-plugin.git"
},
"keywords": [
"webpack",
"webpack-plugin"
],
"author": "gpbl <io@gpbl.org> (https://github.com/gpbl)",
"license": "MIT",
"bugs": {
"url": "https://github.com/gpbl/webpack-cleanup-plugin/issues"
},
"homepage": "https://github.com/gpbl/webpack-cleanup-plugin#readme",
"devDependencies": {
"babel-cli": "6.24.1",
"babel-core": "6.25.0",
"babel-eslint": "7.2.3",
"babel-plugin-transform-object-rest-spread": "6.23.0",
"babel-preset-env": "1.5.2",
"babel-register": "6.24.1",
"chai": "4.0.2",
"eslint": "3.19.0",
"eslint-config-airbnb-base": "11.2.0",
"eslint-plugin-import": "2.3.0",
"mocha": "3.4.2",
"rimraf": "2.6.1",
"sinon": "2.3.4",
"sinon-chai": "2.11.0",
"webpack": "2.6.1"
},
"dependencies": {
"lodash.union": "4.6.0",
"minimatch": "3.0.4",
"recursive-readdir-sync": "1.0.6"
}
}