generated from BeeMyDesk/github-action-typescript-template
-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
50 lines (50 loc) · 1.3 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
{
"name": "grafana-annotation-action",
"version": "1.0.3",
"description": "Add a Grafana annotation to your dashboards during your deployment with this GitHub Action",
"main": "dist/index.js",
"scripts": {
"lint": "eslint index.ts",
"package": "ncc build index.ts -o dist",
"test": "npm run lint && jest --coverage"
},
"repository": {
"type": "git",
"url": "git+https://github.com/frankie567/grafana-annotation-action.git"
},
"keywords": [
"GitHub",
"Actions",
"JavaScript",
"TypeScript"
],
"author": "François Voron",
"license": "MIT",
"bugs": {
"url": "https://github.com/frankie567/grafana-annotation-action/issues"
},
"homepage": "https://github.com/frankie567/grafana-annotation-action#readme",
"dependencies": {
"@actions/core": "^1.2.6",
"axios": "^0.20.0"
},
"devDependencies": {
"@types/jest": "^26.0.14",
"@types/node": "^14.11.7",
"@typescript-eslint/eslint-plugin": "^4.4.0",
"@typescript-eslint/parser": "^4.4.0",
"@vercel/ncc": "^0.24.1",
"acorn": "^8.0.4",
"eslint": "^7.10.0",
"husky": "^4.3.0",
"jest": "^26.5.2",
"minimist": ">=1.2.2",
"ts-jest": "^26.4.1",
"typescript": "^4.0.3"
},
"husky": {
"hooks": {
"pre-commit": "npm run package && git add dist/"
}
}
}