-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 1.06 KB
/
package.json
File metadata and controls
29 lines (29 loc) · 1.06 KB
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
{
"name": "github-actions",
"version": "0.0.1",
"license": "Apache-2.0",
"scripts": {
"eslint": "eslint --ext .ts .",
"lint": "yarn eslint && yarn prettier-check",
"build-ansible-ansible": "ncc build ./ansible/setup/index.ts -o ansible/setup/dist",
"build-metamix-setup": "ncc build ./metamix-setup/index.ts -o metamix-setup/dist",
"build-check-github-user-permission": "ncc build ./check-github-user-permission/index.ts -o check-github-user-permission/dist",
"build-create-grafana-annotation": "ncc build ./create-grafana-annotation/index.ts -o create-grafana-annotation/dist"
},
"dependencies": {
"@actions/cache": "^3.0.6",
"@actions/core": "^1.10.0",
"@actions/exec": "^1.1.1",
"@actions/github": "^5.1.1",
"@actions/http-client": "^2.0.1"
},
"devDependencies": {
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"@vercel/ncc": "^0.34.0",
"eslint": "^8.27.0",
"eslint-plugin-import": "^2.26.0",
"typescript": "^4.9.3"
}
}