forked from huksley/prometheus-remote-write
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
43 lines (43 loc) · 1.25 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
{
"name": "@heliosphere/prometheus-remote-write",
"version": "0.3.1",
"description": "Send samples to prometheus via remote_write from NodeJS",
"main": "index.js",
"types": "types.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/huksley/prometheus-remote-write.git"
},
"bugs": "https://github.com/huksley/prometheus-remote-write/issues",
"homepage": "https://github.com/huksley/prometheus-remote-write",
"scripts": {
"test": "node index.test",
"build": "./node_modules/.bin/pbjs -t static-module -o prom.js prom.proto",
"test:ci": "env GRAFANA_PUSH_URL=chamberme GRAFANA_INSTANCE_ID=chamberme GRAFANA_API_KEY=chamberme chamber exec --strict prometheus-remote-write -- node index.test"
},
"author": "Ruslan Gainutdinov",
"license": "MIT",
"keywords": [
"prometheus",
"remote",
"write",
"metrics"
],
"dependencies": {
"@aws-crypto/sha256-js": "^4.0.0",
"@aws-sdk/protocol-http": "^3.310.0",
"@aws-sdk/signature-v4": "^3.310.0",
"@aws-sdk/types": "^3.218.0",
"axios": "^1.3.6",
"protobufjs": "^6.11.3",
"snappyjs": "^0.6.1"
},
"peerDependencies": {
"node-fetch": "^2.6.7"
},
"peerDependenciesMeta": {
"node-fetch": {
"optional": true
}
}
}