forked from apollographql/subscriptions-transport-ws
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
64 lines (64 loc) · 2.01 KB
/
Copy pathpackage.json
File metadata and controls
64 lines (64 loc) · 2.01 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
{
"name": "subscriptions-transport-ws",
"version": "0.9.1",
"description": "A websocket transport for GraphQL subscriptions",
"main": "dist/index.js",
"browser": "dist/client.js",
"repository": {
"type": "git",
"url": "git+https://github.com/apollostack/subscriptions-transport-ws.git"
},
"dependencies": {
"backo2": "^1.0.2",
"eventemitter3": "^2.0.3",
"iterall": "^1.1.1",
"lodash.assign": "^4.2.0",
"lodash.isobject": "^3.0.2",
"lodash.isstring": "^4.0.1",
"symbol-observable": "^1.0.4",
"ws": "^3.0.0"
},
"scripts": {
"compile": "tsc",
"pretest": "npm run compile",
"test": "npm run testonly --",
"posttest": "npm run lint",
"lint": "tslint --format stylish --type-check --project ./tsconfig.json",
"watch": "tsc -w",
"testonly": "mocha --reporter spec --full-trace ./dist/test/**/*.js",
"coverage": "node ./node_modules/istanbul/lib/cli.js cover _mocha -- --full-trace ./dist/test/tests.js",
"postcoverage": "remap-istanbul --input coverage/coverage.raw.json --type lcovonly --output coverage/lcov.info",
"browser-compile": "webpack --config \"./unpkg-webpack.config.js\"",
"prepublishOnly": "npm run compile && npm run browser-compile && rimraf src",
"postinstall": "node scripts/post-install.js"
},
"peerDependencies": {
"graphql": "^0.10.0 || ^0.11.0"
},
"devDependencies": {
"@types/chai": "^4.0.0",
"@types/graphql": "^0.11.3",
"@types/lodash": "^4.14.68",
"@types/mocha": "^2.2.41",
"@types/node": "^8.0.8",
"@types/sinon": "^2.3.0",
"@types/ws": "^3.0.0",
"chai": "^4.0.2",
"graphql": "^0.11.3",
"graphql-subscriptions": "^0.5.0",
"istanbul": "^1.0.0-alpha.2",
"lodash": "^4.17.1",
"mocha": "^3.4.2",
"remap-istanbul": "^0.9.5",
"rimraf": "^2.6.1",
"sinon": "^2.3.6",
"tslint": "^5.5.0",
"typescript": "^2.5.3",
"webpack": "^3.1.0"
},
"typings": "dist/index.d.ts",
"typescript": {
"definition": "dist/index.d.ts"
},
"license": "MIT"
}