-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
39 lines (39 loc) · 1.06 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
{
"name": "fastify-prom-client",
"version": "0.1.0",
"description": "instrument a fastify application for consumption by prometheus",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"test": "eslint . && jest"
},
"keywords": [
"Fastify",
"prometheus"
],
"author": "Excitable Aardvark <[email protected]>",
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/ExcitableAardvark/fastify-prom-client.git"
},
"bugs": {
"url": "https://github.com/ExcitableAardvark/fastify-prom-client/issues"
},
"homepage": "https://github.com/ExcitableAardvark/fastify-prom-client#readme",
"dependencies": {
"fastify-plugin": "^1.0.1",
"prom-client": "^11.0.0"
},
"devDependencies": {
"eslint": "^4.19.1",
"eslint-config-standard": "^11.0.0",
"eslint-plugin-import": "^2.11.0",
"eslint-plugin-node": "^6.0.1",
"eslint-plugin-promise": "^3.7.0",
"eslint-plugin-standard": "^3.0.1",
"fastify": "^1.4.0",
"jest": "^22.4.3",
"request": "^2.85.0"
}
}