-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
53 lines (53 loc) · 1.94 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": "webpack-clean-obsolete-chunks",
"version": "0.4.0",
"description": "A webpack plugin to remove obsolete chunk files in webpack watch mode",
"author": "GProst a.k.a. German Prostakov <[email protected]>",
"homepage": "https://github.com/GProst/webpack-clean-obsolete-chunks",
"license": "MIT",
"main": "index.js",
"keywords": [
"webpack",
"clean",
"remove",
"delete",
"old",
"obsolete",
"chunks",
"plugin"
],
"scripts": {
"lint": "eslint './**/*.js' -c './.eslintrc.js'",
"eslint-fix": "eslint './**/*.js' -c './.eslintrc.js' --fix",
"install-dev": "yarn && cd test/integration/env/webpack-2 && yarn && cd ../webpack-3 && yarn && yarn && cd ../webpack-4 && yarn",
"test": "yarn run test-unit && yarn run test-integration",
"test-unit": "mocha \"test/unit/**/*.spec.js\"",
"test-unit-watch": "mocha \"test/unit/**/*.spec.js\" --watch",
"test-integration": "yarn run test-webpack2 && yarn run test-webpack3 && yarn run test-webpack4",
"test-webpack2": "mocha \"test/integration/*.spec.js\" --timeout 15000 --webpack 2",
"test-webpack3": "mocha \"test/integration/*.spec.js\" --timeout 15000 --webpack 3",
"test-webpack4": "mocha \"test/integration/*.spec.js\" --timeout 15000 --webpack 4",
"coverage": "istanbul cover _mocha -- \"test/unit/**/*.spec.js\"",
"travis-coverage": "istanbul cover _mocha --report lcovonly -- \"test/unit/**/*.spec.js\" && cat ./coverage/lcov.info | coveralls"
},
"repository": {
"type": "git",
"url": "https://github.com/GProst/webpack-clean-obsolete-chunks"
},
"bugs": {
"url": "https://github.com/GProst/webpack-clean-obsolete-chunks/issues"
},
"dependencies": {
"del": "^3.0.0"
},
"devDependencies": {
"babel-eslint": "^8.0.0",
"chai": "^4.1.2",
"coveralls": "^3.0.0",
"eslint": "^4.6.1",
"istanbul": "^0.4.5",
"minimist": "^1.2.0",
"mocha": "^4.0.1",
"sinon": "^4.0.1"
}
}