forked from cdmbase/graphql-rabbitmq-subscriptions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
88 lines (88 loc) · 2.54 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
82
83
84
85
86
87
88
{
"name": "graphql-rabbitmq-subscriptions",
"version": "1.1.0",
"description": "A graphql-subscriptions PubSub Engine using RabbitMQ",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/cdmbase/graphql-rabbitmq-subscriptions.git"
},
"keywords": [
"graphql",
"rabbitmq",
"apollo",
"subscriptions"
],
"author": "CDMBase",
"license": "MIT",
"bugs": {
"url": "https://github.com/cdmbase/graphql-rabbitmq-subscriptions/issues"
},
"homepage": "https://github.com/cdmbase/graphql-rabbitmq-subscriptions",
"scripts": {
"compile": "tsc",
"pretest": "npm run compile",
"test": "npm run integration",
"posttest": "npm run lint",
"lint": "tslint ./src/**/*.ts",
"watch": "tsc -w",
"integration": "npm run compile && mocha --compilers js:babel-core/register --reporter spec --full-trace ./dist/test/integration-tests.js ",
"custom": "npm run compile && mocha --compilers js:babel-core/register --reporter spec --full-trace ./dist/test/custom-tests.js ",
"prepublish": "npm run integration"
},
"jest": {
"testEnvironment": "node",
"roots": [
"src"
],
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"\\.(ts|tsx)$": "<rootDir>/node_modules/ts-jest/preprocessor.js"
},
"testRegex": "/__tests__/.*test*\\.(ts|tsx|js)$"
},
"dependencies": {
"@types/bunyan": "^1.8.0",
"async": "^2.5.0",
"graphql-subscriptions": "^1.0.0",
"rabbitmq-pub-sub": "^0.2.5"
},
"devDependencies": {
"@types/amqplib": "^0.5.1",
"@types/bluebird": "^3.0.37",
"@types/chai": "^3.4.34",
"@types/chai-as-promised": "0.0.29",
"@types/mocha": "^2.2.39",
"@types/node": "7.0.5",
"@types/promises-a-plus": "^0.0.27",
"@types/simple-mock": "0.0.27",
"@types/sinon": "^1.16.34",
"@types/when": "^2.4.28",
"babel": "^6.3.26",
"babel-core": "^6.6.0",
"babel-eslint": "^7.1.1",
"babel-plugin-add-module-exports": "^0.2.0",
"babel-plugin-transform-decorators-legacy": "^1.3.2",
"babel-preset-es2015": "^6.3.13",
"babel-preset-stage-0": "^6.3.13",
"bluebird": "^3.4.7",
"@cdm-logger/server": "^3.0.2",
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"graphql": "^0.10.5",
"istanbul": "1.0.0-alpha.2",
"mocha": "^3.0.0",
"remap-istanbul": "^0.8.4",
"simple-mock": "^0.7.0",
"tslint": "^4.4.2",
"typescript": "^2.3.4"
},
"typings": "dist/index.d.ts",
"typescript": {
"definition": "dist/index.d.ts"
}
}