-
-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathpackage.json
72 lines (72 loc) · 1.42 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "package-size",
"version": "2.1.2",
"description": "Get real size of an npm package after bundled.",
"license": "MIT",
"repository": "egoist/package-size",
"author": {
"name": "EGOIST",
"email": "0x142857@gmail.com",
"url": "https://github.com/egoist"
},
"engines": {
"node": ">=6"
},
"scripts": {
"test": "jest && xo",
"fix": "xo --fix"
},
"bin": "cli.js",
"main": "./lib/index.js",
"files": [
"lib",
"cli.js"
],
"keywords": [
"webpack",
"bundle",
"stat",
"tool",
"analysis",
"minify",
"gzip"
],
"devDependencies": {
"eslint-config-rem": "^3.2.0",
"jest": "^22.4.3",
"xo": "^0.18.2"
},
"jest": {
"testEnvironment": "node"
},
"xo": {
"extends": "rem/prettier",
"envs": [
"jest"
]
},
"dependencies": {
"bytes": "^3.0.0",
"cac": "^6.3.1",
"chalk": "^1.1.3",
"co": "^4.6.0",
"conf": "^1.1.2",
"debug": "^3.1.0",
"execa": "^0.7.0",
"fs-extra": "^4.0.1",
"gzip-size": "^3.0.0",
"lodash.find": "^4.6.0",
"log-update": "1.0.2",
"memory-fs": "^0.4.1",
"ora": "^1.3.0",
"parse-package-name": "^0.1.0",
"string-width": "^2.0.0",
"text-table": "^0.2.0",
"update-notifier": "^1.0.3",
"user-home": "^2.0.0",
"webpack": "^4.29.6",
"webpack-bundle-analyzer": "^3.1.0",
"webpack-merge": "^4.2.1",
"yarn-global": "^1.1.0"
}
}