-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpackage.json
More file actions
81 lines (81 loc) · 2.21 KB
/
Copy pathpackage.json
File metadata and controls
81 lines (81 loc) · 2.21 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
76
77
78
79
80
81
{
"name": "@m19c/graphql-firestore-subscriptions",
"version": "1.1.0",
"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": "npx eslint --max-warnings=0 --ext .ts . --fix",
"build": "npm-run-all build:clean build:transpile",
"build:transpile": "tsc",
"build:clean": "rimraf dist/*",
"format": "prettier --write \"{,!(node_modules)/**/}*.{js,jsx}\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/m19c/graphql-firestore-subscriptions.git"
},
"keywords": [
"graphql",
"firestore",
"firebase",
"subscription",
"apollo"
],
"author": "Marc Binder <marcandrebinder@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/m19c/graphql-firestore-subscriptions/issues"
},
"homepage": "https://github.com/m19c/graphql-firestore-subscriptions#readme",
"peerDependencies": {
"graphql-subscriptions": "^1.0.0"
},
"devDependencies": {
"@faker-js/faker": "^8.0.1",
"@google-cloud/firestore": "^6.5.0",
"@types/invariant": "^2.2.35",
"@types/jest": "^29.5.1",
"@types/node": "^20.2.1",
"@typescript-eslint/eslint-plugin": "^5.59.2",
"@typescript-eslint/parser": "^5.59.2",
"eslint": "^8.39.0",
"eslint-plugin-import": "^2.27.5",
"graphql-subscriptions": "^2.0.0",
"jest": "^29.5.0",
"npm-run-all": "^4.1.5",
"prettier": "^3.0.1",
"prettier-eslint": "^15.0.1",
"ts-jest": "^29.1.0",
"typescript": "^5.1.6"
},
"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": {
"eslint-plugin-jest": "^27.2.1",
"invariant": "^2.2.4",
"iterall": "^1.3.0"
}
}