-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.34 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
{
"name": "react-native-bundle-size",
"version": "1.0.0",
"description": "",
"main": "dist/index.js",
"scripts": {
"postinstall": "yarn lint",
"test": "jest",
"lint": "eslint . --ext .ts --fix",
"prepare": "yarn tsc && ncc build dist/index.js -o dist --source-map",
"all": "npm run lint && npm run prepare"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@actions/core": "1.2.7",
"@actions/exec": "1.0.4",
"@actions/github": "4.0.0",
"@actions/io": "1.1.0",
"adm-zip": "0.5.5",
"pretty-bytes": "5.6.0"
},
"devDependencies": {
"@babel/core": "^7.14.0",
"@babel/preset-env": "^7.14.1",
"@babel/preset-typescript": "^7.13.0",
"@types/adm-zip": "^0.4.34",
"@types/chai": "^4.2.18",
"@types/jest": "^26.0.23",
"@types/mock-fs": "^4.13.0",
"@types/node": "^15.0.2",
"@typescript-eslint/eslint-plugin": "^4.22.1",
"@typescript-eslint/parser": "^4.22.1",
"@vercel/ncc": "^0.28.5",
"babel-jest": "^26.6.3",
"chai": "^4.3.4",
"eslint": "^7.26.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"jest": "^26.6.3",
"mock-fs": "^4.14.0",
"ts-jest": "^26.5.6",
"ts-node": "^9.1.1",
"typescript": "^4.2.4"
}
}