-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.63 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
{
"name": "affected-targets-gha-action",
"description": "Aviator MergeQueue affected targets calculator for GitHub Actions workflows.",
"version": "0.1.0",
"author": "Aviator Technologies",
"private": true,
"homepage": "https://github.com/aviator-co/affected-targets-gha-action",
"repository": {
"type": "git",
"url": "git+https://github.com/aviator-co/affected-targets-gha-action.git"
},
"bugs": {
"url": "https://github.com/aviator-co/affected-targets-gha-action/issues"
},
"keywords": [
"mergequeue"
],
"exports": {
".": "./dist/index.js"
},
"engines": {
"node": ">=20"
},
"scripts": {
"bundle": "npm run format:write && npm run package",
"format:write": "prettier --write **/*.ts",
"format:check": "prettier --check **/*.ts",
"lint": "npx eslint . -c ./.github/linters/.eslintrc.yml",
"package": "ncc build src/main.ts --license licenses.txt",
"package:watch": "npm run package -- --watch",
"all": "npm run format:write && npm run lint && npm run package"
},
"license": "MIT",
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"@actions/glob": "^0.4.0",
"@actions/http-client": "^2.2.0",
"yaml": "^2.3.4"
},
"devDependencies": {
"@types/node": "^20.10.3",
"@typescript-eslint/eslint-plugin": "^6.13.2",
"@typescript-eslint/parser": "^6.13.2",
"@vercel/ncc": "^0.38.1",
"eslint": "^8.55.0",
"eslint-plugin-github": "^4.10.1",
"eslint-plugin-jsonc": "^2.10.0",
"eslint-plugin-prettier": "^5.0.1",
"prettier": "^3.1.0",
"prettier-eslint": "^16.1.2",
"typescript": "^5.3.3"
}
}