-
-
Notifications
You must be signed in to change notification settings - Fork 164
/
Copy pathpackage.json
85 lines (85 loc) · 2.3 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
{
"name": "graphql-transport-ws",
"version": "1.4.2",
"description": "🚡 Coherent, zero-dependency, lazy, simple, GraphQL over WebSocket Protocol compliant server and client",
"keywords": [
"graphql",
"graphql-subscriptions",
"graphql-over-websocket",
"graphql-transport-over-websocket",
"graphql-over-ws",
"graphql-ws",
"graphql-transport-ws",
"transport",
"transport-ws",
"ws",
"websocket",
"websocket-client",
"websocket-server",
"subscriptions",
"real-time",
"relay",
"relay-modern",
"apollo",
"protocol"
],
"license": "MIT",
"homepage": "https://github.com/enisdenjo/graphql-transport-ws#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/enisdenjo/graphql-transport-ws.git"
},
"main": "lib/index.js",
"browser": "lib/client.js",
"types": "lib/index.d.ts",
"files": [
"lib",
"README.md",
"LICENSE.md",
"PROTOCOL.md"
],
"publishConfig": {
"access": "public"
},
"scripts": {
"gendocs": "typedoc --options typedoc.js src/",
"lint": "eslint 'src'",
"type-check": "tsc --noEmit",
"test": "jest -i",
"build": "tsc -b tsconfig.build.json",
"release": "semantic-release"
},
"peerDependencies": {
"graphql": "^15.0.0"
},
"dependencies": {
"ws": "^7.3.1"
},
"devDependencies": {
"@babel/core": "^7.11.6",
"@babel/plugin-proposal-class-properties": "^7.10.4",
"@babel/plugin-proposal-nullish-coalescing-operator": "^7.10.4",
"@babel/plugin-proposal-object-rest-spread": "^7.11.0",
"@babel/plugin-proposal-optional-chaining": "^7.11.0",
"@babel/preset-env": "^7.11.5",
"@babel/preset-typescript": "^7.10.4",
"@semantic-release/changelog": "^5.0.1",
"@semantic-release/git": "^9.0.0",
"@types/jest": "^26.0.13",
"@types/ws": "^7.2.6",
"@typescript-eslint/eslint-plugin": "^4.1.0",
"@typescript-eslint/parser": "^4.1.0",
"babel-jest": "^26.3.0",
"eslint": "^7.8.1",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"graphql": "^15.3.0",
"graphql-subscriptions": "^1.1.0",
"jest": "^26.4.2",
"prettier": "^2.1.1",
"semantic-release": "^17.1.1",
"typedoc": "^0.19.1",
"typedoc-plugin-markdown": "^2.4.2",
"typescript": "^4.0.2"
}
}