-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
43 lines (43 loc) · 1.12 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
{
"name": "graphql-subscriptions-client",
"version": "0.16.4",
"description": "A simpler client for graphql subscriptions based on apollographql/subscriptions-transport-ws",
"module": "dist/esm/index.js",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rm -rf dist && tsup src/index.ts --format esm,cjs,iife --legacy-output --dts",
"prepublishOnly": "npm run build",
"prepare": "npm run build",
"prepack": "npm run build",
"test": "jest --runInBand"
},
"keywords": [
"graphql"
],
"files": [
"dist"
],
"author": "James Smith",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/lunchboxer/graphql-subscriptions-client"
},
"dependencies": {
"backo2": "^1.0.2",
"eventemitter3": "^3.1.2",
"symbol-observable": "^1.2.0"
},
"devDependencies": {
"@types/backo2": "^1.0.1",
"@types/jest": "^27.0.2",
"@types/ws": "^7.4.0",
"jest": "^27.2.2",
"jest-websocket-mock": "^2.2.1",
"mock-socket": "^9.0.3",
"ts-jest": "^27.0.5",
"tsup": "^3.11.0",
"typescript": "^4.4.3"
}
}