forked from davidyaha/graphql-redis-subscriptions
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
74 lines (74 loc) · 2.24 KB
/
Copy pathpackage.json
File metadata and controls
74 lines (74 loc) · 2.24 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
65
66
67
68
69
70
71
72
73
74
{
"name": "graphql-redis-subscriptions",
"version": "2.1.0",
"description": "A graphql-subscriptions PubSub Engine using redis",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/davidyaha/graphql-redis-subscriptions.git"
},
"keywords": [
"graphql",
"redis",
"apollo",
"subscriptions"
],
"author": "David Yahalomi",
"contributors": [
{
"name": "Michał Lytek",
"url": "https://github.com/19majkel94"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/davidyaha/graphql-redis-subscriptions/issues"
},
"homepage": "https://github.com/davidyaha/graphql-redis-subscriptions",
"scripts": {
"compile": "tsc",
"pretest": "npm run compile",
"test": "npm run testonly -- && npm run integration --",
"posttest": "npm run lint",
"lint": "tslint --project ./tsconfig.json ./src/**/*.ts",
"watch": "tsc -w",
"testonly": "mocha --reporter spec --full-trace ./dist/test/tests.js ",
"integration": "npm run compile && mocha --reporter spec --full-trace ./dist/test/integration-tests.js ",
"benchmark": "npm run compile && mocha --reporter spec --full-trace ./dist/test/benchmark.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",
"prepublishOnly": "npm run test"
},
"dependencies": {
"iterall": "^1.2.2"
},
"peerDependencies": {
"graphql-subscriptions": "^1.0.0"
},
"devDependencies": {
"@types/chai": "^4.1.6",
"@types/chai-as-promised": "7.1.0",
"@types/ioredis": "4.0.12",
"@types/mocha": "^5.2.5",
"@types/node": "12.0.9",
"@types/simple-mock": "0.8.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"graphql": "^14.1.1",
"graphql-subscriptions": "^1.0.0",
"ioredis": "^4.6.3",
"istanbul": "1.0.0-alpha.2",
"mocha": "^6.1.3",
"remap-istanbul": "^0.12.0",
"simple-mock": "^0.8.0",
"tslint": "^5.8.0",
"typescript": "^3.1.1"
},
"optionalDependencies": {
"ioredis": "^4.6.3"
},
"typings": "dist/index.d.ts",
"typescript": {
"definition": "dist/index.d.ts"
}
}