-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
61 lines (61 loc) · 1.43 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
{
"name": "@deepstream/clusternode-redis",
"version": "1.0.1",
"description": "",
"main": "./dist/src/redis-cluster-node.js",
"scripts": {
"tsc": "tsc",
"lint": "tslint --project .",
"lint:fix": "npm run lint -- --fix",
"test": "mocha --opts mocha.opts 'src/*.spec.ts'",
"coverage": "nyc npm run test",
"ci": "npm run tsc && npm run coverage",
"docker": "docker start -p 6379:6379 redis"
},
"repository": {
"type": "git",
"url": "https://github.com/deepstreamIO/deepstream.io-clusternode-redis.git"
},
"bugs": {
"url": "https://github.com/deepstreamIO/deepstream.io-clusternode-redis/issues"
},
"homepage": "http://deepstream.io",
"dependencies": {
"@deepstream/types": "^1.0.2",
"ioredis": "^4.11.2"
},
"devDependencies": {
"@types/ioredis": "^4.0.13",
"@deepstream/protobuf": "^1.0.1",
"@types/chai": "^4.1.7",
"@types/mocha": "^5.2.7",
"chai": "^4.2.0",
"coveralls": "^3.0.6",
"mocha": "^6.2.0",
"nyc": "^13.3.0",
"ts-node": "^8.3.0",
"tslint": "^5.18.0",
"typescript": "^3.5.2"
},
"author": "deepstreamHub GmbH",
"license": "Apache-2.0",
"publishConfig": {
"access": "public"
},
"nyc": {
"include": [
"src/*.ts"
],
"extension": [
".ts"
],
"require": [
"ts-node/register/transpile-only"
],
"reporter": [
"lcov"
],
"sourceMap": true,
"instrument": true
}
}