-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
39 lines (39 loc) · 857 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
{
"name": "grafana-cloud-graphite",
"version": "0.3.6",
"description": "NodeJS client for Grafana Cloud Graphite API",
"repository": {
"type": "git",
"url": "git+https://github.com/valamidev/grafana-cloud-graphite.git"
},
"main": "dist/src/index.js",
"engines": {
"node": ">=16"
},
"scripts": {
"prebuild": "rimraf dist",
"build": "tsc",
"test": "jest",
"prepublishOnly": "npm run build && npm run test"
},
"keywords": [
"grafana",
"cloud",
"graphite",
"metrics"
],
"author": "Valamidev",
"license": "MIT",
"dependencies": {
"node-fetch": "^2.7.0"
},
"devDependencies": {
"@types/jest": "^29.5.5",
"@types/node": "^18.15.11",
"@types/node-fetch": "^2.6.6",
"jest": "^29.7.0",
"rimraf": "^5.0.5",
"ts-jest": "^29.1.1",
"typescript": "^5.2.2"
}
}