forked from Surnet/graphql-amqp-subscriptions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
81 lines (81 loc) · 2.39 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
{
"name": "@fraight/graphql-amqp-subscriptions",
"description": "GraphQL AMQP Subscriptions",
"version": "1.0.5",
"author": "https://github.com/fraight/graphql-amqp-subscriptions/graphs/contributors",
"license": "MIT",
"homepage": "https://github.com/fraight/graphql-amqp-subscriptions",
"bugs": {
"url": "https://github.com/fraight/graphql-amqp-subscriptions/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/fraight/graphql-amqp-subscriptions.git"
},
"keywords": [
"graphql",
"subscription",
"api",
"push",
"pull",
"amqp",
"rabbitmq",
"rabbit"
],
"main": "lib/index.js",
"scripts": {
"start": "nodemon --ext js,ts,tsx,json --exec babel-node -- src/index.ts --extensions \".ts,.tsx\" --source-maps inline",
"type-check": "tsc --noEmit",
"type-check:watch": "npm run type-check -- --watch",
"build": "npm run build:types && npm run build:js",
"build:types": "tsc --emitDeclarationOnly",
"build:js": "babel src --out-dir lib --extensions \".ts,.tsx\" --source-maps inline",
"vulnerabilities": "npm audit",
"check-updates": "npm outdated",
"lint": "tslint \"src/**/*.ts\"",
"test": "TS_NODE_FILES=true nyc mocha",
"release": "release-it"
},
"dependencies": {
"@babel/runtime": "7.3.4",
"@types/debug": "4.1.2",
"debug": "4.1.1",
"graphql-subscriptions": "1.0.0"
},
"devDependencies": {
"@babel/cli": "7.2.3",
"@babel/core": "7.2.2",
"@babel/node": "7.2.2",
"@babel/plugin-proposal-class-properties": "7.2.3",
"@babel/plugin-proposal-object-rest-spread": "7.2.0",
"@babel/plugin-transform-runtime": "7.3.4",
"@babel/preset-env": "7.2.3",
"@babel/preset-typescript": "7.1.0",
"@types/amqplib": "0.5.9",
"@types/chai": "4.1.7",
"@types/chai-as-promised": "7.1.0",
"@types/graphql": "14.0.7",
"@types/mocha": "5.2.6",
"@types/sinon": "7.0.6",
"@types/sinon-chai": "3.2.2",
"amqplib": "0.5.3",
"chai": "4.2.0",
"chai-as-promised": "7.1.1",
"eslint": "5.11.1",
"graphql": "14.0.2",
"mocha": "5.2.0",
"mocha-tslint": "0.3.0",
"nodemon": "1.18.9",
"nyc": "13.3.0",
"release-it": "10.1.0",
"sinon": "7.2.4",
"sinon-chai": "3.3.0",
"ts-node": "8.0.2",
"tslint": "5.12.0",
"typescript": "3.2.2"
},
"peerDependencies": {
"amqplib": "^0.5.3",
"graphql": "^14.0.2"
}
}