-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
60 lines (60 loc) · 1.41 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
{
"name": "redjs",
"version": "1.0.0",
"description": "Redjs is a Redis-like in-memory data store, for use in nodejs cluster. Ioredis compatible",
"main": "dist/",
"scripts": {
"test": "node test/test-app.js",
"test-with-coverage": "nyc --reporter=lcov mocha test/test-app.js"
},
"repository": {
"type": "git",
"url": "https://github.com/ctoesca/redjs.git"
},
"keywords": [
"redis",
"cluster",
"mock",
"shared",
"memory",
"pubsub"
],
"author": "Christophe Toesca",
"license": "MIT",
"readme": "README.md",
"dependencies": {
"bluebird": "^3.5.3",
"bunyan": "^1.8.12",
"lodash": "^4.17.19",
"minimatch": "^3.0.4",
"redis-parser": "^3.0.0",
"sha1": "^1.1.1",
"uuid": "^3.3.2"
},
"engines": {
"node": ">=8"
},
"devDependencies": {
"@types/assert": "^1.4.1",
"@types/bluebird": "^3.5.25",
"@types/bunyan": "^1.8.5",
"@types/lodash": "^4.14.120",
"@types/minimatch": "^3.0.3",
"@types/node": "^10.17.27",
"@types/sha1": "^1.1.1",
"@types/uuid": "^3.4.4",
"debug": "^4.1.1",
"gulp": "^4.0.0",
"gulp-sourcemaps": "^2.6.4",
"gulp-tslint": "^8.1.3",
"gulp-typescript": "^5.0.0",
"ioredis": "^4.5.1",
"merge2": "^1.2.3",
"mocha": "^5.2.0",
"mochawesome": "^3.1.1",
"nyc": "^13.1.0",
"run-sequence": "^2.2.1",
"tslint": "^5.12.1",
"typescript": "^3.2.4"
}
}