-
Notifications
You must be signed in to change notification settings - Fork 48
/
package.json
59 lines (59 loc) · 1.29 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
58
59
{
"name": "hubot-grafana",
"description": "Query Grafana dashboards",
"version": "7.0.3",
"author": "Stephen Yeargin <[email protected]>",
"license": "MIT",
"keywords": [
"hubot",
"hubot-scripts",
"grafana",
"graphs"
],
"repository": {
"type": "git",
"url": "git://github.com/stephenyeargin/hubot-grafana.git"
},
"bugs": {
"url": "https://github.com/stephenyeargin/hubot-grafana/issues"
},
"dependencies": {
"@aws-sdk/client-s3": "^3.565.0",
"node-fetch": "^2.7.0"
},
"peerDependencies": {
"hubot": ">=3 || 0.0.0-development"
},
"devDependencies": {
"@types/hubot": "^3.3.7",
"chai": "^4.4.1",
"eslint": "^8.45.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.27.5",
"hubot": "^7.0.0",
"hubot-mock-adapter": "^2.0.0",
"husky": "^9.0.11",
"mocha": "^10.4.0",
"nock": "^13.5.4",
"nyc": "^15.1.0"
},
"main": "index.js",
"scripts": {
"test": "mocha",
"test-with-coverage": "nyc --reporter=text mocha",
"bootstrap": "script/bootstrap",
"prepare": "husky",
"lint": "eslint src/ test/"
},
"files": [
"src/**/*.js",
"CONTRIBUTING.md",
"LICENSE",
"index.js",
"types.d.ts"
],
"volta": {
"node": "18.19.0"
},
"types": "types.d.ts"
}