forked from davidyaha/graphql-redis-subscriptions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
81 lines (81 loc) · 2.24 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
{
"name": "@dailydotdev/graphql-redis-subscriptions",
"version": "2.4.3",
"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"
}
],
"module": "dist/index.js",
"typings": "dist/types/index.d.ts",
"files": [
"dist"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/davidyaha/graphql-redis-subscriptions/issues"
},
"homepage": "https://github.com/davidyaha/graphql-redis-subscriptions",
"scripts": {
"compile": "tsc",
"test": "npm run coverage && npm run lint",
"lint": "eslint src --ext ts",
"watch": "tsc -w",
"build": "rm -rf dist && tsc -p tsconfig.json && ncc build --quiet --minify",
"testonly": "mocha --reporter spec src/test/tests.ts",
"integration": "mocha --reporter spec src/test/integration-tests.ts",
"coverage": "nyc --reporter=html --reporter=text mocha src/test/**/*.ts"
},
"dependencies": {
"iterall": "^1.3.0"
},
"peerDependencies": {
"graphql-subscriptions": "^1.0.0 || ^2.0.0"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "^1.0.1",
"@types/chai": "^4.3.1",
"@types/chai-as-promised": "^7.1.5",
"@types/ioredis": "^4.17.3",
"@types/mocha": "^8.2.3",
"@types/node": "16.11.7",
"@types/simple-mock": "^0.8.1",
"@typescript-eslint/eslint-plugin": "^4.0.0",
"@typescript-eslint/parser": "^3.10.1",
"@vercel/ncc": "^0.31.1",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"graphql": "^15.7.2",
"graphql-subscriptions": "^2.0.0",
"ioredis": "^5.0.5",
"mocha": "^8.1.3",
"nyc": "^15.1.0",
"prettier": "^2.6.2",
"simple-mock": "^0.8.0",
"ts-node": "^10.8.0",
"typescript": "^4.0.2"
},
"optionalDependencies": {
"ioredis": "^5.0.5"
},
"typescript": {
"definition": "dist/index.d.ts"
}
}