-
Notifications
You must be signed in to change notification settings - Fork 79
Expand file tree
/
Copy pathpackage.json
More file actions
69 lines (69 loc) · 1.67 KB
/
package.json
File metadata and controls
69 lines (69 loc) · 1.67 KB
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
60
61
62
63
64
65
66
67
68
69
{
"name": "grafana-dash-gen",
"version": "4.1.1",
"description": "A grafana dashboard generator",
"main": "grafana/index.js",
"types": "grafana/index.d.ts",
"scripts": {
"fast-test": "jest",
"test-cover": "jest --coverage",
"view-cover": "rm -rf ./coverage && pnpm run test-cover && open ./coverage/index.html",
"test": "pnpm run fast-test && pnpm run test-cover",
"lint": "eslint",
"build": "tsc -p tsconfig.build.json",
"typecheck": "tsc",
"prepublish": "pnpm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/uber/grafana-dash-gen.git"
},
"keywords": [
"grafana",
"dashboard",
"generator"
],
"author": "Madan Thangavelu",
"license": "MIT",
"dependencies": {
"error": "^10.4.0",
"node-fetch": "^2.7.0",
"underscore": "^1.13.7",
"xtend": "^4.0.2"
},
"devDependencies": {
"@babel/core": "^7.28.5",
"@babel/preset-env": "^7.28.5",
"@babel/preset-typescript": "^7.28.5",
"@eslint/js": "^9.38.0",
"@types/jest": "^30.0.0",
"@types/node": "^25.0.0",
"@types/node-fetch": "^2.6.13",
"@types/underscore": "^1.13.0",
"@types/xtend": "^4.0.6",
"babel-jest": "^30.2.0",
"eslint": "^9.38.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"globals": "^17.0.0",
"jest": "^30.2.0",
"nock": "^14.0.0",
"prettier": "3.6.2",
"typescript": "^5.9.3",
"typescript-eslint": "^8.46.2"
},
"files": [
"CHANGELOG.md",
"CONTRIBUTION.md",
"LICENSE",
"README.md",
"example.js",
"grafana",
"src",
"index.js",
"package.json"
],
"engines": {
"node": ">=12"
}
}