-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.99 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
{
"name": "graphql-server-rabbitmq",
"version": "0.6.1",
"description": "Production-ready Node.js GraphQL server for RabbitMQ",
"main": "dist/index.js",
"scripts": {
"compile": "tsc",
"prepublish": "npm run compile",
"test": "npm run testonly --",
"testonly": "npm run compile && mocha --compilers js:babel-core/register --reporter spec --full-trace --timeout 60000 ./dist/apolloServerRabbitMQ.test.js"
},
"repository": {
"type": "git",
"url": "https://github.com/cdmbase/graphql-server-rabbitmq"
},
"keywords": [
"GraphQL",
"Apollo",
"Server",
"AMQP",
"RabbitMQ",
"Javascript"
],
"author": "veera.marni <vmarni@cdmbase.email>",
"license": "MIT",
"bugs": {
"url": "https://github.com/cdmbase/graphql-server-rabbitmq/issues"
},
"homepage": "https://github.com/cdmbase/graphql-server-rabbitmq#readme",
"dependencies": {
"@types/bunyan": "^0.0.35",
"graphql-rabbitmq-subscriptions": "^1.0.6",
"graphql-server-core": "^0.6.0",
"graphql-server-module-graphiql": "^0.6.0",
"rabbitmq-pub-sub": "^0.2.3"
},
"devDependencies": {
"@types/chai": "^3.4.34",
"@types/connect": "^3.4.30",
"@types/es6-shim": "^0.31.32",
"@types/node": "^7.0.3",
"babel-cli": "^6.11.4",
"babel-core": "^6.11.4",
"babel-polyfill": "^6.9.1",
"babel-preset-es2015": "^6.9.0",
"body-parser": "^1.15.2",
"cdm-logger": "^0.3.2",
"chai": "^3.5.0",
"graphql": "^0.9.0",
"graphql-server-integration-testsuite": "^0.5.1",
"istanbul": "1.0.0-alpha.2",
"lerna": "git://github.com/DxCx/lerna.git#bootstrap-dev-bin-pkg",
"mocha": "^3.1.1",
"remap-istanbul": "0.8.4",
"supertest": "^3.0.0",
"supertest-as-promised": "^4.0.0",
"tslint": "^4.4.2",
"typescript": "^2.0.3"
},
"peerDependencies": {
"graphql": "^0.8.0 || ^0.9.0"
},
"optionalDependencies": {
"@types/graphql": "^0.8.6"
},
"typings": "dist/index.d.ts",
"typescript": {
"definition": "dist/index.d.ts"
}
}