UNPKG

node-redlock

Version:

A distributed locking algorithm used to manage distributed resources in a system.

42 lines (41 loc) 1.17 kB
{ "name": "node-redlock", "version": "2.3.0", "description": "A distributed locking algorithm used to manage distributed resources in a system.", "main": "redlock.js", "types": "redlock.d.ts", "scripts": { "build": "tsc -b", "test": "mocha -r ts-node/register test/**/*.test.ts", "lint": "eslint . --ext .ts --fix", "audit": "npm run audit" }, "keywords": [ "redlock", "distributed-lock", "redis" ], "author": "Kunal Burangi", "license": "MIT", "repository": { "url": "https://github.com/KunalBurangi/node-redlock.git" }, "dependencies": { "ioredis": "^5.4.1", "redis": "^4.6.14" }, "devDependencies": { "@types/chai": "^4.3.16", "@types/mocha": "^10.0.6", "@types/node": "^16.11.1", "@types/sinon": "^17.0.3", "@typescript-eslint/eslint-plugin": "^7.11.0", "@typescript-eslint/parser": "^7.11.0", "chai": "^4.4.1", "eslint": "^8.57.0", "mocha": "^10.4.0", "sinon": "^18.0.0", "ts-node": "^10.9.2", "typescript": "^5.4.5" } }