-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
41 lines (41 loc) · 996 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
33
34
35
36
37
38
39
40
41
{
"name": "mercurius-hit-map",
"version": "2.0.0",
"description": "Find out which GQL resolvers are used",
"main": "index.js",
"scripts": {
"lint": "standard",
"lint:fix": "standard --fix",
"test": "npm run lint && npm run test:unit",
"test:unit": "tap test/**/*.test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Eomm/mercurius-hit-map.git"
},
"keywords": [
"graphql",
"mercurius",
"plugin",
"hit-map",
"resolvers",
"debug"
],
"author": "Manuel Spigolon <behemoth89@gmail.com> (https://github.com/Eomm)",
"license": "MIT",
"bugs": {
"url": "https://github.com/Eomm/mercurius-hit-map/issues"
},
"homepage": "https://github.com/Eomm/mercurius-hit-map#readme",
"devDependencies": {
"fastify": "^5.0.0",
"mercurius": "^15.0.0",
"standard": "^17.0.0",
"tap": "^21.0.0",
"ws": "^8.9.0"
},
"dependencies": {
"fastify-plugin": "^5.0.1",
"graphql": "^16.6.0"
}
}