-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.05 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
{
"name": "advanced-cache",
"version": "2.1.0",
"description": "Advanced redis cache with lock function",
"main": "index.js",
"author": "Dzmitry Frolov <dzmitryfrolov@gmail.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/HotelQuickly/advanced-cache.git"
},
"keywords": [
"cache",
"redis",
"redlock",
"hotelquickly"
],
"dependencies": {
"bluebird": "^3.4.7",
"debug": "^2.6.1",
"ioredis": "^2.5.0",
"node-cache": "^4.1.1",
"redlock": "^2.1.0",
"sinon": "1.17.7"
},
"engines": {
"node": ">=5.0.0"
},
"scripts": {
"test": "npm run eslint && npm run utest",
"utest": "mocha $(find ./lib -name *.test.js)",
"eslint": "eslint *.js ./lib/** ./test/**"
},
"devDependencies": {
"@hotelquickly/eslint-config-hotelquickly": "1.2.0",
"eslint": "^3.15.0",
"mocha": "^3.2.0",
"should": "^11.2.0",
"should-sinon": "^0.0.5",
"sinon": "^1.17.7"
},
"eslintConfig": {
"extends": "@hotelquickly/eslint-config-hotelquickly"
}
}