-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
38 lines (38 loc) · 1.1 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
{
"name": "grafana-annotation-action",
"description": "GitHub Action for Grafana annotations.",
"main": "dist/index.js",
"scripts": {
"lint": "eslint index.ts",
"lint:fix": "eslint index.ts --fix",
"test": "npm run lint && jest --runInBand --coverage",
"build": "ncc build index.ts -o dist && npx convert-action"
},
"repository": {
"type": "git",
"url": "git+https://github.com/danieloneilldazn/grafana-annotation-action.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/danieloneilldazn/grafana-annotation-action/issues"
},
"homepage": "https://github.com/danieloneilldazn/grafana-annotation-action#readme",
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^5.0.0",
"axios": "^1.6.0",
"moment": "^2.29.4"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.12.7",
"@typescript-eslint/eslint-plugin": "^7.6.0",
"@typescript-eslint/parser": "^7.6.0",
"@vercel/ncc": "^0.38.1",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.2"
}
}