-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 840 Bytes
/
package.json
File metadata and controls
35 lines (35 loc) · 840 Bytes
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
{
"name": "size-label-action",
"version": "0.0.1",
"description": "GitHub action to assign labels based on pull request change sizes",
"main": "index.js",
"type": "module",
"author": "Pascal",
"license": "MIT",
"private": true,
"bin": {
"size-label-action": "index.js"
},
"scripts": {
"test": "vitest run && yarn compile && node test.js",
"lint": "eslint .",
"compile": "ncc build index.js --license LICENSE -o dist",
"prepublish": "yarn compile"
},
"dependencies": {
"@octokit/rest": "^22.0.1",
"globrex": "^0.1.2",
"https-proxy-agent": "^8.0.0"
},
"devDependencies": {
"@vercel/ncc": "^0.38.4",
"dotenv": "^17.3.1",
"eslint": "^10.0.3",
"tmp": "^0.2.5",
"vitest": "^4.1.0"
},
"prettier": {
"arrowParens": "avoid",
"trailingComma": "none"
}
}