-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
90 lines (90 loc) · 2.05 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
82
83
84
85
86
87
88
89
90
{
"name": "@astroband/graphql-postgres-subscriptions",
"version": "1.0.10",
"description": "A graphql-subscriptions PubSub engine using Postgresql",
"main": "dist/index.js",
"scripts": {
"test": "NODE_ENV=test jest --verbose --forceExit --detectOpenHandles",
"posttest": "yarn lint",
"build": "tsc",
"lint": "tslint -c tslint.json 'src/**/*.ts'",
"prepublishOnly": "yarn test && yarn build"
},
"repository": {
"type": "git",
"url": "https://github.com/astroband/graphql-postgres-subscriptions.git"
},
"keywords": [
"graphql",
"postgres",
"postgresql",
"redis",
"apollo",
"subscriptions"
],
"author": {
"name": "Alexander Wong",
"email": "[email protected]",
"url": "https://udia.ca"
},
"contributors": [
"Timur Ramazanov <[email protected]>"
],
"jest": {
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"testEnvironment": "node",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/__tests__/testHelper.ts"
],
"collectCoverage": true,
"collectCoverageFrom": [
"**/src/**/*.ts"
],
"coverageReporters": [
"json",
"lcov",
"text",
"html"
]
},
"homepage": "https://github.com/astroband/graphql-postgres-subscriptions#readme",
"license": "MIT",
"bugs": {
"url": "https://github.com/astroband/graphql-postgres-subscriptions/issues"
},
"dependencies": {
"graphql-subscriptions": "^1.0.0",
"iterall": "^1.2.2"
},
"devDependencies": {
"@types/jest": "^23.1.2",
"@types/pg": "^7.4.8",
"graphql": "^14.0.2",
"jest": "^23.2.0",
"pg": "^7.4.1",
"ts-jest": "^23.10.4",
"tslint": "^5.9.1",
"tslint-config-prettier": "^1.12.0",
"typescript": "^3.1.3"
},
"peerDependencies": {
"graphql": "^0.13.2",
"pg": "^7.4.1"
},
"typings": "dist/index.d.ts",
"files": [
"dist"
]
}