-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.15 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
{
"name": "analyze-cra-bundle",
"description": "Analyzes your CRA build bundle stats",
"version": "0.0.5",
"author": "Pete Correia @petecorreia",
"bin": {
"analyze-cra-bundle": "bin/run"
},
"bugs": "https://github.com/petecorreia/analyze-cra-bundle/issues",
"dependencies": {
"@oclif/command": "^1.8.0",
"@oclif/config": "^1.17.0",
"@oclif/plugin-help": "^3.2.2",
"@octokit/rest": "^18.3.2",
"chalk": "^4.1.0",
"cli-ux": "^5.5.1",
"gzip-size": "^6.0.0",
"tslib": "^2.1.0"
},
"devDependencies": {
"@types/chalk": "^2.2.0",
"@types/execa": "^0.9.0",
"@types/glob": "^7.1.3",
"@types/gzip-size": "^4.1.0",
"@types/node": "^14.14.31",
"ts-node": "^9.1.1",
"typescript": "^4.2.2"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/bin",
"/lib"
],
"homepage": "https://github.com/petecorreia/analyze-cra-bundle",
"keywords": [
"oclif"
],
"license": "MIT",
"main": "lib/index.js",
"oclif": {
"bin": "analyze-cra-bundle"
},
"repository": "petecorreia/analyze-cra-bundle",
"scripts": {
"prepack": "rm -rf lib && tsc -b"
},
"types": "lib/index.d.ts"
}