forked from uber/grafana-dash-gen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1004 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
{
"name": "grafana-dash-gen",
"version": "3.2.2",
"description": "A grafana dashboard generator",
"main": "index.js",
"scripts": {
"fast-test": "node ./test/index.js | tap-spec",
"test-cover": "nyc --reporter html --reporter cobertura --reporter text tape ./test/index.js",
"view-cover": "rm -rf ./coverage && npm run test-cover && open ./coverage/index.html",
"test": "npm run fast-test && npm run test-cover"
},
"repository": {
"type": "git",
"url": "git+https://github.com/uber/grafana-dash-gen.git"
},
"keywords": [
"grafana",
"dashboard",
"generator"
],
"author": "Madan Thangavelu",
"license": "MIT",
"dependencies": {
"error": "^7.2.1",
"request": "^2.88.2",
"request-promise-native": "^1.0.8",
"underscore": "^1.10.2",
"xtend": "^4.0.2"
},
"devDependencies": {
"eslint": "^7.3.1",
"nock": "^13.0.2",
"nyc": "^15.1.0",
"pre-commit": "^1.0.6",
"tap-spec": "^5.0.0",
"tape": "5.3.1"
}
}