UNPKG

1.03 kBJSONView Raw
1{
2 "name": "redlock",
3 "version": "2.0.0",
4 "description": "A node.js redlock implementation for distributed redis locks",
5 "main": "redlock.js",
6 "scripts": {
7 "test": "istanbul cover mocha",
8 "test-ci": "istanbul cover _mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | coveralls"
9 },
10 "repository": {
11 "type": "git",
12 "url": "https://github.com/mike-marcacci/node-redlock.git"
13 },
14 "keywords": [
15 "nodejs",
16 "iojs",
17 "redlock",
18 "distributed",
19 "lock",
20 "redis"
21 ],
22 "author": "Mike Marcacci",
23 "license": "MIT",
24 "bugs": {
25 "url": "https://github.com/mike-marcacci/node-redlock/issues"
26 },
27 "homepage": "https://github.com/mike-marcacci/node-redlock",
28 "devDependencies": {
29 "chai": "^3.5.0",
30 "coveralls": "^2.11.8",
31 "ioredis": "^1.15.1",
32 "istanbul": "^0.4.2",
33 "mocha": "^2.4.5",
34 "redis": "^2.4.2"
35 },
36 "dependencies": {
37 "bluebird": "^3.3.3"
38 },
39 "config": {
40 "blanket": {
41 "pattern": [
42 "redlock.js"
43 ]
44 }
45 }
46}