-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 1011 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
{
"name": "better-stats-webpack-plugin",
"version": "1.1.0",
"description": "Better stats for webpack builds",
"author": "Eamon Hyland <ehyland90@gmail.com> (https://eamon.sh/)",
"license": "MIT",
"engines": {
"node": ">=6.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/ehyland/better-stats-webpack-plugin.git"
},
"main": "lib/BetterStatsWebpackPlugin.js",
"devDependencies": {
"chai": "^4.1.2",
"css-loader": "^0.28.11",
"eslint": "^4.19.1",
"file-loader": "^1.1.11",
"fs-extra": "^5.0.0",
"mini-css-extract-plugin": "^0.4.0",
"mocha": "^5.0.5",
"proxyquire": "^2.0.1",
"sinon": "^4.5.0",
"webpack": "^4.0.0"
},
"scripts": {
"test": "yarn run test-lint && yarn run test-unit && yarn run test-integration",
"test-lint": "eslint .",
"test-unit": "mocha ./test/unit/**/*.test.js",
"test-integration": "mocha ./test/integration/**/*.test.js"
},
"peerDependencies": {
"webpack": "^4.0.0"
}
}