-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
43 lines (43 loc) · 1.55 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
{
"name": "spikenail-pubsub-redis",
"version": "0.3.0",
"description": "Redis PubSub for Spikenail framework",
"main": "dist/index.js",
"files": [
"dist/"
],
"repository": {
"type": "git",
"url": "git+https://github.com/spikenail/spikenail-pubsub-redis.git"
},
"author": "Igor Lesnenko",
"license": "MIT",
"bugs": {
"url": "https://github.com/spikenail/spikenail-pubsub-redis/issues"
},
"scripts": {
"compile": "tsc",
"pretest": "npm run compile",
"test": "npm run testonly -- && npm run integration --",
"posttest": "npm run lint",
"lint": "tslint --type-check --project ./tsconfig.json ./src/**/*.ts",
"watch": "tsc -w",
"testonly": "mocha --reporter spec --full-trace ./dist/test/tests.js ",
"integration": "npm run compile && mocha --reporter spec --full-trace ./dist/test/integration-tests.js ",
"benchmark": "npm run compile && mocha --reporter spec --full-trace ./dist/test/benchmark.js ",
"coverage": "node ./node_modules/istanbul/lib/cli.js cover _mocha -- --full-trace ./dist/test/tests.js",
"postcoverage": "remap-istanbul --input coverage/coverage.raw.json --type lcovonly --output coverage/lcov.info"
},
"homepage": "https://github.com/spikenail/spikenail-pubsub-redis#readme",
"devDependencies": {
"@types/graphql": "^0.11.5",
"@types/ioredis": "0.0.25",
"@types/node": "^8.0.34",
"typescript": "^2.5.3"
},
"dependencies": {
"graphql": "^0.11.7",
"graphql-redis-subscriptions": "github:spikenail/graphql-redis-subscriptions",
"ioredis": "^3.1.4"
}
}