This repository has been archived by the owner on Apr 17, 2023. It is now read-only.
forked from davidyaha/graphql-mqtt-subscriptions
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
73 lines (73 loc) · 2.12 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
{
"name": "@aerogear/graphql-mqtt-subscriptions",
"version": "1.1.3",
"description": "A graphql-subscriptions PubSub Engine using mqtt protocol",
"publishConfig": {
"access": "public"
},
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/aerogear/graphql-mqtt-subscriptions.git"
},
"keywords": [
"graphql",
"mqtt",
"apollo",
"subscriptions"
],
"author": "David Yahalomi",
"license": "MIT",
"bugs": {
"url": "https://github.com/aerogear/graphql-mqtt-subscriptions/issues"
},
"homepage": "https://github.com/aerogear/graphql-mqtt-subscriptions",
"scripts": {
"compile": "tsc --noUnusedParameters --noUnusedLocals",
"test": "tsc && nyc --reporter=lcov mocha ./dist/test/tests.js",
"posttest": "npm run lint",
"lint": "tslint ./src/**/*.ts",
"watch": "tsc -w",
"integration": "npm run compile && mocha --reporter spec --full-trace --exit ./dist/test/integration-tests.js ",
"benchmark": "npm run compile && mocha --reporter spec --full-trace ./dist/test/benchmark.js ",
"release:prep": "./scripts/prepareRelease.sh",
"release:validate": "./scripts/validateRelease.sh",
"release:publish": "./scripts/publishRelease.sh"
},
"dependencies": {
"iterall": "^1.2.2",
"mqtt": "^4.0.0"
},
"devDependencies": {
"@istanbuljs/nyc-config-typescript": "0.1.3",
"@types/chai": "4.2.11",
"@types/chai-as-promised": "7.1.3",
"@types/graphql": "14.2.3",
"@types/mocha": "8.0.0",
"@types/node": "11.13.9",
"@types/simple-mock": "0.8.1",
"chai": "4.2.0",
"chai-as-promised": "7.1.1",
"coveralls": "3.1.0",
"graphql": "15.1.0",
"graphql-subscriptions": "1.1.0",
"mocha": "8.0.1",
"nyc": "15.1.0",
"simple-mock": "0.8.0",
"tslint": "5.20.1",
"typescript": "3.9.5"
},
"peerDependencies": {
"graphql-subscriptions": "^1.1.0"
},
"typings": "dist/index.d.ts",
"typescript": {
"definition": "dist/index.d.ts"
},
"nyc": {
"extends": "@istanbuljs/nyc-config-typescript",
"all": true,
"check-coverage": false,
"exclude": ["src/test/**/*.ts"]
}
}