-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 806 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 806 Bytes
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
{
"name": "prom-api-client",
"version": "0.1.6",
"description": "A client to support Prometheus HTTP API",
"main": "./dist/index.js",
"type": "module",
"scripts": {
"build": "npx tsc",
"lint": "npx eslint . --ext .ts",
"start": "npm run lint && node ./dist/index.js",
"test": "node ./test/prometheus_query.test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/deepakdevcast/prom-api-client.git"
},
"keywords": [
"prometheus",
"metrics",
"observability"
],
"license": "ISC",
"devDependencies": {
"@types/node": "^20.11.28",
"@typescript-eslint/eslint-plugin": "^7.3.1",
"@typescript-eslint/parser": "^7.3.1",
"eslint": "^8.57.0",
"typescript": "^5.4.2"
},
"dependencies": {
"yaml": "^2.4.1"
}
}