UNPKG

1.95 kBJSONView Raw
1{
2 "name": "apollo-link-ws",
3 "version": "1.0.20",
4 "description": "WebSocket transport layer for GraphQL",
5 "author": "Evans Hauser <evanshauser@gmail.com>",
6 "contributors": [
7 "James Baxley <james@meteor.com>",
8 "Jonas Helfer <jonas@helfer.email>",
9 "jon wong <j@jnwng.com>",
10 "Sashko Stubailo <sashko@stubailo.com>"
11 ],
12 "license": "MIT",
13 "main": "./lib/index.js",
14 "module": "./lib/bundle.esm.js",
15 "typings": "./lib/index.d.ts",
16 "sideEffects": false,
17 "repository": {
18 "type": "git",
19 "url": "git+https://github.com/apollographql/apollo-link.git"
20 },
21 "bugs": {
22 "url": "https://github.com/apollographql/apollo-link/issues"
23 },
24 "homepage": "https://github.com/apollographql/apollo-link#readme",
25 "scripts": {
26 "build": "tsc && rollup -c",
27 "clean": "rimraf lib/* && rimraf coverage/*",
28 "coverage": "jest --coverage",
29 "filesize": "../../scripts/minify",
30 "lint": "tslint -c \"../../tslint.json\" -p tsconfig.json -c ../../tslint.json src/*.ts",
31 "prebuild": "npm run clean",
32 "prepare": "npm run build",
33 "test": "npm run lint && jest",
34 "watch": "tsc -w -p . & rollup -c -w"
35 },
36 "dependencies": {
37 "apollo-link": "^1.2.14",
38 "tslib": "^1.9.3"
39 },
40 "peerDependencies": {
41 "subscriptions-transport-ws": "^0.9.0"
42 },
43 "devDependencies": {
44 "@types/graphql": "14.2.3",
45 "@types/jest": "24.9.0",
46 "graphql": "15.0.0",
47 "graphql-tag": "2.10.1",
48 "jest": "24.9.0",
49 "rimraf": "2.7.1",
50 "rollup": "1.29.1",
51 "subscriptions-transport-ws": "0.9.16",
52 "ts-jest": "22.4.6",
53 "tslint": "5.20.1",
54 "typescript": "3.0.3"
55 },
56 "jest": {
57 "transform": {
58 ".(ts|tsx)": "ts-jest"
59 },
60 "testRegex": "(/__tests__/.*|\\.(test|spec))\\.(ts|tsx|js)$",
61 "moduleFileExtensions": [
62 "ts",
63 "tsx",
64 "js",
65 "json"
66 ],
67 "testURL": "http://localhost"
68 },
69 "gitHead": "1012934b4fd9ab436c4fdcd5e9b1bb1e4c1b0d98"
70}