26 lines
496 B
JSON
26 lines
496 B
JSON
{
|
|
"name": "nlocks",
|
|
"version": "1.0.0",
|
|
"description": "A Node.js library providing asynchronous locking mechanisms including in-memory locks and file-based locks",
|
|
"main": "index.js",
|
|
"scripts": {
|
|
"test": "jest"
|
|
},
|
|
"keywords": [
|
|
"lock",
|
|
"async",
|
|
"file",
|
|
"mutex",
|
|
"synchronization",
|
|
"concurrency"
|
|
],
|
|
"author": "nlocks contributors",
|
|
"license": "MIT",
|
|
"devDependencies": {
|
|
"jest": "^30.2.0"
|
|
},
|
|
"dependencies": {
|
|
"uuid": "^8.3.2"
|
|
}
|
|
}
|