forked from axelspringer/graphql-google-pubsub
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
executable file
·66 lines (66 loc) · 1.79 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
{
"name": "@selleo/graphql-google-pubsub",
"version": "3.0.0",
"description": "A graphql-subscriptions PubSub Engine using Google PubSub",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/selleo/graphql-google-pubsub.git"
},
"keywords": [
"graphql",
"google",
"pubsub",
"apollo",
"subscriptions"
],
"author": "Jonas Hackenberg",
"license": "MIT",
"bugs": {
"url": "https://github.com/selleo/graphql-google-pubsub/issues"
},
"homepage": "https://github.com/selleo/graphql-google-pubsub",
"contributors": [
{
"name": "Tomasz Żwak",
"email": "[email protected]"
},
{
"name": "Jonas Hackenberg",
"email": "[email protected]"
}
],
"scripts": {
"prepublishOnly": "npm run test",
"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 ",
"preintegration": "npm run compile",
"integration": "mocha --reporter spec --full-trace ./dist/test/integration-tests.js"
},
"dependencies": {
"@google-cloud/pubsub": "^4.1.0",
"graphql-subscriptions": "^2.0.0",
"iterall": "^1.3.0"
},
"devDependencies": {
"@types/chai": "^4.3.11",
"@types/chai-as-promised": "^7.1.8",
"@types/mocha": "^10.0.6",
"@types/node": "^20.10.4",
"@types/simple-mock": "^0.8.6",
"chai": "^4.3.10",
"chai-as-promised": "^7.1.1",
"dotenv": "^16.3.1",
"graphql": "^16.8.1",
"mocha": "^10.2.0",
"semantic-release": "^22.0.12",
"simple-mock": "^0.8.0",
"tslint": "^5.20.1",
"typescript": "^5.3.3"
}
}