-
Notifications
You must be signed in to change notification settings - Fork 43
/
package.json
executable file
·60 lines (60 loc) · 1.67 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
{
"name": "@axelspringer/graphql-google-pubsub",
"version": "2.1.0",
"description": "A graphql-subscriptions PubSub Engine using Google PubSub",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/axelspringer/graphql-google-pubsub.git"
},
"keywords": [
"graphql",
"google",
"pubsub",
"apollo",
"subscriptions"
],
"author": "Jonas Hackenberg",
"license": "MIT",
"bugs": {
"url": "https://github.com/axelspringer/graphql-google-pubsub/issues"
},
"homepage": "https://github.com/axelspringer/graphql-google-pubsub",
"contributors": [
{
"name": "Jonas Hackenberg",
"email": "jonas@arkulpa.at"
}
],
"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": "^1.1.5",
"iterall": "^1.2.2",
"graphql-subscriptions": "^1.1.0"
},
"devDependencies": {
"@types/chai": "^4.1.4",
"@types/chai-as-promised": "^7.1.0",
"@types/mocha": "^5.2.5",
"@types/node": "^10.9.2",
"@types/simple-mock": "^0.8.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"graphql": "^0.13.0",
"mocha": "^6.2.2",
"simple-mock": "^0.8.0",
"tslint": "^5.16.0",
"typescript": "^3.4.5"
}
}