-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
40 lines (40 loc) · 1001 Bytes
/
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
{
"name": "@zentered/grafana-backup-action",
"version": "1.0.0",
"private": true,
"description": "Fetches Grafana dashboards and saves them to a local directory",
"keywords": [
"grafana"
],
"homepage": "https://zentered.co/",
"bugs": {
"url": "https://github.com/zentered/grafana-backup-action/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zentered/grafana-backup-action.git"
},
"license": "MIT",
"author": "Patrick Heneise <[email protected]> (https://zentered.co)",
"type": "module",
"main": "dist/index.js",
"scripts": {
"start": "node index.js",
"dev": "node --env-file .env index.js",
"build": "ncc build index.js --license licenses.txt",
"test": "echo \"Error: no test specified\" && exit 1"
},
"release": {
"branches": [
"main"
]
},
"devDependencies": {
"@vercel/ncc": "^0.38.1",
"eslint": "^8.55.0",
"prettier": "^3.1.1"
},
"engines": {
"node": ">=20"
}
}