-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.3 KB
/
package.json
File metadata and controls
48 lines (48 loc) · 1.3 KB
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
44
45
46
47
48
{
"name": "@thecodenebula/apollo-prometheus-plugin",
"version": "1.0.0",
"description": "An Apollo plugin to expose GraphQL metrics as prometheus metrics",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"keywords": [
"prometheus",
"apollo",
"plugin"
],
"private": false,
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "jest",
"build": "tsc --build",
"build:watch": "tsc --watch",
"prettier": "prettier . --write",
"prettier:watch": "onchange '**/*.(ts|json)' -- prettier --write {{changed}}"
},
"repository": {
"type": "git",
"url": "git+https://github.com/grillorafael/apollo-prometheus-plugin.git"
},
"author": "Rafael Abreu <grillorafael@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/grillorafael/apollo-prometheus-plugin/issues"
},
"homepage": "https://github.com/grillorafael/apollo-prometheus-plugin#readme",
"devDependencies": {
"@types/jest": "^26.0.10",
"apollo-server": "^2.16.1",
"apollo-server-plugin-base": "^0.9.1",
"apollo-server-testing": "^2.16.1",
"graphql": "^15.3.0",
"jest": "^26.4.1",
"onchange": "^7.0.2",
"prettier": "^2.0.5",
"ts-jest": "^26.2.0",
"typescript": "^4.0.2"
},
"dependencies": {
"prom-client": "^12.0.0"
}
}