-
-
Notifications
You must be signed in to change notification settings - Fork 35
/
Copy pathpackage.json
57 lines (57 loc) · 1.38 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
55
56
57
{
"name": "cloudspout-button-panel",
"version": "7.0.14",
"description": "Panel for a single button",
"scripts": {
"clean": "rm -rf dist/",
"grafana-sign": "node grafana-sign.js",
"zip": "node zip.js",
"predist": "npm run build ",
"dist": "npm run sign",
"postdist": "npm run zip",
"build": "grafana-toolkit plugin:build",
"test": "grafana-toolkit plugin:test",
"dev": "grafana-toolkit plugin:dev",
"watch": "grafana-toolkit plugin:dev --watch",
"release": "release-it",
"sign": "npx @grafana/toolkit plugin:sign"
},
"repository": "github:cloudspout/cloudspout-button-panel",
"author": "CloudSpout LLC",
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/cloudspout/cloudspout-button-panel/issues",
"email": "[email protected]"
},
"devDependencies": {
"@grafana/data": "^7.2.0",
"@grafana/runtime": "^7.2.0",
"@grafana/toolkit": "^7.2.0",
"@grafana/ui": "^7.2.0",
"emotion": "10.0.27",
"js-sha256": "^0.9.0",
"js-sha512": "^0.8.0",
"npm-build-zip": "^1.0.2",
"openpgp": "^4.10.8",
"release-it": "^13.6.5"
},
"engines": {
"node": ">=12 <13"
},
"release-it": {
"github": {
"release": true,
"assets": [
"dist/*.zip"
]
},
"npm": {
"publish": false
},
"hooks": {
"after:bump": [
"npm run dist"
]
}
}
}