-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
32 lines (32 loc) · 980 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
{
"name": "cloudflare-analytics-prometheus-exporter",
"version": "1.0.0",
"description": "A tool to gather cloudflare analytics from its GraphQL API and serve it in Prometheus format",
"type": "module",
"main": "index.js",
"scripts": {
"start": "DEBUG=exporter:* node bin.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"engines": {
"node": "16.x"
},
"author": "Vasco Santos",
"license": "(Apache-2.0 OR MIT)",
"dependencies": {
"debug": "^4.3.3",
"delay": "^4.3.3",
"dotenv": "^16.0.0",
"graphql-request": "^4.2.0",
"it-pipe": "^2.0.3",
"prom-client": "^14.0.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nftstorage/cloudflare-analytics-prometheus-exporter.git"
},
"bugs": {
"url": "https://github.com/nftstorage/cloudflare-analytics-prometheus-exporter/issues"
},
"homepage": "https://github.com/nftstorage/cloudflare-analytics-prometheus-exporter#readme"
}