-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
58 lines (58 loc) · 1.44 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
56
57
58
{
"name": "webpack-enhanced-stats-plugin",
"version": "2.9.0",
"description": " Updating an unborn branch with changes added to the index.",
"main": "index.js",
"engines": {
"node": ">=10.20.0"
},
"directories": {
"lib": "lib"
},
"files": [
"index.js",
"loader.js",
"lib/*.js"
],
"scripts": {
"test": "run-p test:*",
"test:unit": "jest '.*/__tests__/.*\\.spec\\.js$'",
"test:snapshot": "./playground/play.sh",
"release": "standard-version",
"playground:play": "./playground/play.sh",
"playground:upgrade-deps": "./playground/upgrade-deps.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/erykpiast/webpack-enhanced-stats-plugin.git"
},
"keywords": [
"webpack",
"stats",
"plugin"
],
"author": "Eryk Napierała <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/erykpiast/webpack-enhanced-stats-plugin/issues"
},
"homepage": "https://github.com/erykpiast/webpack-enhanced-stats-plugin#readme",
"devDependencies": {
"@types/jest": "26.0.20",
"eslint": "7.20.0",
"eslint-config-airbnb-base": "14.2.1",
"eslint-plugin-import": "2.22.1",
"jest": "26.6.3",
"npm-run-all": "4.1.5",
"standard-version": "9.1.1"
},
"dependencies": {
"acorn": "8.0.5",
"acorn-walk": "8.0.2",
"lodash": "4.17.21",
"source-map": "0.7.3"
},
"peerDependencies": {
"webpack": ">=4"
}
}