@jbagatta/johnny-locke
Version:
A robust, strongly-consistent distributed locking library that provides atomic operations across multiple processes
43 lines (42 loc) • 948 B
JSON
{
"name": "@jbagatta/johnny-locke",
"version": "0.5.0",
"description": "A robust, strongly-consistent distributed locking library that provides atomic operations across multiple processes",
"type": "module",
"author": "John Bagatta",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"clean": "rm -rf dist",
"test": "jest",
"prepublishOnly": "npm run clean && npm run build"
},
"dependencies": {
"ioredis": "^5.6.1",
"nats": "^2.16.0"
},
"devDependencies": {
"@types/ioredis": "^4.28.10",
"@types/jest": "^29.5.14",
"@types/node": "^20.11.24",
"jest": "^29.7.0",
"ts-jest": "^29.3.4",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"publishConfig": {
"access": "public"
},
"keywords": [
"johnny-locke",
"nats",
"jetstream",
"redis",
"distributed-lock"
]
}