-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
68 lines (68 loc) · 1.97 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
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
{
"name": "@mercuriusjs/federation",
"version": "5.0.0",
"description": "A plugin for mercurius federation",
"main": "index.js",
"types": "index.d.ts",
"files": [
"index.js",
"index.d.ts",
"lib"
],
"scripts": {
"lint": "npm run lint:standard && npm run lint:typescript",
"lint:fix": "standard --fix",
"lint:standard": "standard | snazzy",
"lint:typescript": "standard --parser @typescript-eslint/parser --plugin @typescript-eslint/eslint-plugin test/types/*.ts",
"example": "node example/index.js",
"test": "npm run lint && npm run test:unit && npm run test:types",
"test:unit": "tap --jobs=1 test/*.js",
"test:cov": "tap --jobs=1 --coverage-report=html test/*.js",
"test:types": "tsd",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mercurius-js/mercurius-federation.git"
},
"keywords": [
"mercurius"
],
"author": "Davide Fiorello <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mercurius-js/mercurius-federation/issues"
},
"homepage": "https://github.com/mercurius-js/mercurius-federation#readme",
"devDependencies": {
"@commitlint/cli": "^19.0.3",
"@commitlint/config-conventional": "^19.0.3",
"@graphql-tools/merge": "^9.0.0",
"@graphql-tools/schema": "^10.0.0",
"@graphql-tools/utils": "^10.0.0",
"@typescript-eslint/eslint-plugin": "^5.43.0",
"@typescript-eslint/parser": "^5.43.0",
"fastify": "^5.0.0-alpha.4",
"graphql-tag": "^2.12.6",
"graphql-ws": "^5.11.2",
"husky": "^9.0.7",
"lint-staged": "^15.0.1",
"mqemitter": "^6.0.0",
"snazzy": "^9.0.0",
"standard": "^17.0.0",
"tap": "16.3.8",
"tsd": "^0.31.0",
"ws": "^8.11.0"
},
"tsd": {
"directory": "test/types"
},
"lint-staged": {
"*.{js,jsx}": "standard --cache --fix"
},
"dependencies": {
"@fastify/error": "^4.0.0",
"graphql": "^16.6.0",
"mercurius": "^16.0.0"
}
}