forked from andresz1/size-limit-action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.46 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
{
"name": "size-limit-action",
"version": "2.2.0",
"private": true,
"description": "size-limit action",
"main": "dist/index.js",
"license": "ISC",
"scripts": {
"format": "prettier --write **/*.ts",
"lint": "eslint src/**/*.ts",
"test": "jest",
"build": "ncc build src/main.ts -o dist",
"size": "npm run build && size-limit",
"prepare": "husky install"
},
"size-limit": [
{
"path": "dist/index.js",
"limit": "4500 ms"
}
],
"dependencies": {
"@actions/core": "^1.9.1",
"@actions/exec": "^1.0.3",
"@actions/github": "^5.0.3",
"bytes": "^3.1.0",
"has-pnpm": "^1.1.1",
"has-yarn": "^3.0.0",
"markdown-table": "^3.0.2"
},
"devDependencies": {
"@size-limit/file": "^8.0.0",
"@size-limit/time": "^8.0.0",
"@types/bytes": "^3.1.1",
"@types/jest": "^28.1.6",
"@types/markdown-table": "^3.0.0",
"@types/node": "^18.6.4",
"@typescript-eslint/eslint-plugin": "^5.32.0",
"@typescript-eslint/parser": "^5.32.0",
"@vercel/ncc": "^0.34.0",
"eslint": "^8.21.0",
"eslint-plugin-github": "^4.3.7",
"eslint-plugin-jest": "^26.7.0",
"husky": "^8.0.1",
"jest": "^28.1.3",
"jest-circus": "^28.1.3",
"js-yaml": "^4.1.0",
"lint-staged": "^13.0.3",
"prettier": "^2.7.1",
"size-limit": "^8.0.0",
"ts-jest": "^28.0.7",
"typescript": "^4.7.4"
},
"lint-staged": {
"*.ts": [
"prettier --write",
"eslint --fix"
]
}
}