Budibase is an open-source low-code platform for creating internal apps in minutes. Supports PostgreSQL, MySQL, MSSQL, MongoDB, Rest API, Docker, K8s 🚀
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

49 lines
1.1 KiB

{
"name": "redlock",
"version": "4.2.0",
"description": "A node.js redlock implementation for distributed redis locks",
"main": "redlock.js",
"scripts": {
"test": "istanbul cover mocha",
"test-ci": "istanbul cover _mocha --report lcovonly -- -R spec && cat ./coverage/lcov.info | coveralls"
},
"repository": {
"type": "git",
"url": "https://github.com/mike-marcacci/node-redlock.git"
},
"keywords": [
"nodejs",
"iojs",
"redlock",
"distributed",
"lock",
"redis"
],
"author": "Mike Marcacci",
"license": "MIT",
"bugs": {
"url": "https://github.com/mike-marcacci/node-redlock/issues"
},
"homepage": "https://github.com/mike-marcacci/node-redlock",
"devDependencies": {
"chai": "^4.2.0",
"coveralls": "^3.1.0",
"ioredis": "^4.18.0",
"istanbul": "^0.4.2",
"mocha": "^8.1.3",
"redis": "^3.0.2"
},
"dependencies": {
"bluebird": "^3.7.2"
},
"engines": {
"node": ">=8.0.0"
},
"config": {
"blanket": {
"pattern": [
"redlock.js"
]
}
}
}