-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 886 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
38
39
40
{
"name": "webpack-why-package",
"version": "0.2.3",
"description": "Answer to \"Why that package is in the bundle\"",
"keywords": [
"webpack",
"bundle",
"package",
"why",
"ls",
"analyze"
],
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"test": "FORCE_COLOR=3 jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"prepublishOnly": "npm run test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/fengzilong/webpack-why-package.git"
},
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/fengzilong/webpack-why-package/issues"
},
"homepage": "https://github.com/fengzilong/webpack-why-package#readme",
"dependencies": {
"chalk": "^4.1.2",
"get-package-name": "^2.2.0"
},
"devDependencies": {
"jest": "^27.2.5"
}
}