-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 831 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 831 Bytes
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
{
"name": "@moonwalker/graphql-nats-subscriptions",
"version": "0.1.7",
"description": "GraphQL subscriptions over NATS",
"author": "Moon & Walker Technoligies",
"license": "MIT",
"repository": "moonwalker/graphql-nats-subscriptions",
"main": "lib/index.js",
"scripts": {
"watch": "tsc -w",
"build": "rollup -c",
"prepublishOnly": "npm run build",
"incver": "npm version patch -m ':package: release %s'",
"bump": "npm run incver && git push --follow-tags && npm publish"
},
"dependencies": {
"graphql-subscriptions": "^1.1.0",
"iterall": "^1.2.2"
},
"devDependencies": {
"@types/node": "^12.12.14",
"rimraf": "^3.0.0",
"rollup": "^1.27.8",
"rollup-plugin-typescript2": "^0.25.2",
"typescript": "^3.7.2"
},
"peerDependencies": {
"nats": "^1.3.2"
}
}