-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 1.9 KB
/
package.json
File metadata and controls
74 lines (74 loc) · 1.9 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
{
"name": "mercurius-dynamic-schema",
"version": "3.0.1",
"description": "Serve different schema per request according a defined strategy",
"main": "index.js",
"types": "index.d.ts",
"type": "module",
"scripts": {
"lint": "eslint .",
"lint:fix": "npm run lint -- --fix",
"prepare": "husky",
"test": "npm run test:unit && npm run test:types",
"test:unit": "c8 node --test test/*.test.js --check-coverage --statements 97.67 --branches 85.71 --functions 100 --lines 97.67",
"test:types": "tsd"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nearform/mercurius-dynamic-schema.git"
},
"keywords": [
"mercurius",
"fastify",
"graphql",
"fatify-plugin",
"mercurius-plugin"
],
"author": "brainrepo",
"licenses": [
{
"type": "Apache-2.0",
"url": "http://www.apache.org/licenses/LICENSE-2.0"
}
],
"bugs": {
"url": "https://github.com/nearform/mercurius-dynamic-schema/issues"
},
"homepage": "https://github.com/nearform/mercurius-dynamic-schema#readme",
"peerDependencies": {
"fastify": "^5.4.0",
"mercurius": "^16.2.0"
},
"dependencies": {
"fastify-plugin": "^5.1.0"
},
"devDependencies": {
"@commitlint/cli": "^20.2.0",
"@commitlint/config-conventional": "^20.2.0",
"@eslint/eslintrc": "^3.3.3",
"@eslint/js": "^10.0.1",
"@types/node": "^25.0.2",
"@types/ws": "^8.18.1",
"c8": "^11.0.0",
"eslint": "^10.0.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-prettier": "^5.5.4",
"globals": "^17.0.0",
"husky": "^9.1.7",
"lint-staged": "^16.2.7",
"mercurius": "^16.6.0",
"prettier": "^3.7.4",
"tsd": "^0.33.0",
"typescript": "^6.0.2",
"typescript-eslint": "^8.49.0"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --cache --fix"
},
"tsd": {
"directory": "test/types"
},
"engines": {
"node": ">=22"
}
}