forked from pkg-size/action
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
78 lines (78 loc) · 1.58 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
73
74
75
76
77
78
{
"name": "pkg-size-action",
"version": "0.0.0-semantic-release",
"description": "Check package size changes on pull-requests",
"keywords": [
"github",
"action",
"pkg-size",
"package",
"distribution",
"size",
"watch"
],
"license": "MIT",
"repository": "pkg-size/action",
"funding": "https://github.com/pkg-size/action?sponsor=1",
"author": {
"name": "Hiroki Osame",
"email": "[email protected]"
},
"files": [
"dist"
],
"scripts": {
"build": "rollup -c && :",
"lint": "eslint ."
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"src/**/*.js": [
"eslint",
"npm run build",
"git add dist"
]
},
"devDependencies": {
"@actions/cache": "^1.0.7",
"@actions/core": "^1.4.0",
"@actions/exec": "^1.1.0",
"@actions/github": "^4.0.0",
"@actions/io": "^1.1.1",
"@pvtnbr/eslint-config-base": "^0.1.19",
"@rollup/plugin-commonjs": "^17.1.0",
"@rollup/plugin-node-resolve": "^11.2.1",
"builtin-modules": "^3.1.0",
"byte-size": "^7.0.1",
"conventional-changelog-conventionalcommits": "^4.6.0",
"esbuild": "^0.12.20",
"eslint": "^7.32.0",
"glob-to-regexp": "^0.4.1",
"husky": "^4.3.8",
"lint-staged": "^10.5.4",
"lodash-es": "^4.17.21",
"markdown-table": "^2.0.0",
"outdent": "^0.7.1",
"rollup": "^2.55.1",
"rollup-plugin-esbuild": "^4.5.0",
"rollup-plugin-terser": "^7.0.2"
},
"eslintConfig": {
"extends": "@pvtnbr/eslint-config-base",
"rules": {
"unicorn/prevent-abbreviations": [
"error",
{
"replacements": {
"pkg": false,
"ref": false
}
}
]
}
}
}