-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
56 lines (56 loc) · 1.67 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
{
"name": "@mercuriusjs/subscription-client",
"version": "2.0.0",
"description": "GraphQL subscription client based on Mercurius",
"main": "index.js",
"types": "index.d.ts",
"scripts": {
"unit": "tap test/*.js",
"cov": "tap --coverage-report=html -J test/*.js",
"lint": "npm run lint:standard && npm run lint:typescript",
"lint:fix": "standard --fix && npm run lint:typescript -- --fix",
"lint:standard": "standard | snazzy",
"lint:typescript": "standard --parser @typescript-eslint/parser --plugin @typescript-eslint/eslint-plugin test/types/*.ts",
"typescript": "tsd",
"test": "npm run lint && npm run unit && npm run typescript"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mercurius-js/mercurius-subscription-client.git"
},
"author": "Matteo Collina <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mercurius-js/mercurius-subscription-client/issues"
},
"homepage": "https://mercurius.dev",
"peerDependencies": {
"graphql": "^16.0.0"
},
"devDependencies": {
"@sinonjs/fake-timers": "^10.0.2",
"@types/node": "^20.1.0",
"@types/ws": "^8.2.0",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"fastify": "^5.0.0-alpha.4",
"graphql-ws": "^5.11.2",
"mercurius": "^15.0.0",
"snazzy": "^9.0.0",
"standard": "^17.0.0",
"tap": "^16.3.0",
"tsd": "^0.28.0",
"typescript": "^5.0.2"
},
"dependencies": {
"@fastify/error": "^4.0.0",
"secure-json-parse": "^3.0.0",
"ws": "^8.2.2"
},
"tsd": {
"directory": "test/types"
},
"engines": {
"node": ">=20.16.0"
}
}