forked from m19c/graphql-firestore-subscriptions
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 1.95 KB
/
package.json
File metadata and controls
75 lines (75 loc) · 1.95 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
75
{
"name": "@trevorstout/graphql-firestore-subscriptions",
"version": "1.0.3",
"description": "A simple & powerful package to broadcast events from Cloud Firestore over an AsyncIterator to your GraphQL Subscription Resolver.",
"main": "dist/index.js",
"scripts": {
"test": "npm-run-all test:unit",
"test:unit": "jest --coverage",
"test:unit:watch": "jest --watch",
"test:lint": "tslint -c tslint.json --project .",
"build": "npm-run-all build:clean build:transpile",
"build:transpile": "tsc",
"build:clean": "rimraf dist/*"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MrBoolean/graphql-firestore-subscriptions.git"
},
"keywords": [
"graphql",
"firestore",
"firebase",
"subscription",
"apollo"
],
"author": "Marc Binder <marcandrebinder@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/MrBoolean/graphql-firestore-subscriptions/issues"
},
"homepage": "https://github.com/MrBoolean/graphql-firestore-subscriptions#readme",
"peerDependencies": {
"graphql-subscriptions": "^2.0.0"
},
"devDependencies": {
"@google-cloud/firestore": "^6.4.2",
"@types/faker": "^4.1.5",
"@types/invariant": "^2.2.35",
"@types/jest": "^29.2.5",
"@types/node": "^18.11.18",
"faker": "^4.1.0",
"graphql-subscriptions": "^2.0.0",
"jest": "^29.3.1",
"npm-run-all": "^4.1.5",
"ts-jest": "^29.0.5",
"tslint": "^5.20.1",
"typescript": "^4.9.4"
},
"jest": {
"coveragePathIgnorePatterns": [
"node_modules",
"dist"
],
"collectCoverageFrom": [
"src/**/*.ts",
"!src/**/*.test.ts"
],
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"dependencies": {
"invariant": "^2.2.4",
"iterall": "^1.3.0"
}
}