-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
56 lines (56 loc) · 1.71 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
{
"name": "@lunarade/locki",
"version": "1.0.13",
"description": "A redis-backed lock broker that manages groups of S/X locks with atomic lua scripts.",
"main": "./dist/src/main.js",
"keywords": [
"redis",
"lock",
"locks",
"dlm",
"atomicity",
"consistency",
"locki"
],
"scripts": {
"dev": "ts-node scripts/dev.ts",
"nodemon": "nodemon -w dist --delay 500ms --ext js --exec \"node -r source-map-support/register dist/src/main.js\"",
"tsc-w": "tsc -w --pretty",
"clean": "mkdirp dist && del-cli -f dist && mkdirp dist",
"test": "tsc && mocha -r source-map-support/register --timeout 50000 dist/tests/**/*.test.js",
"test-w": "ts-node scripts/test-w.ts",
"mocha-watch-js": "mocha -r source-map-support/register --timeout 50000 --watch --watch-files dist dist/tests/**/*.test.js",
"coverage": "nyc --exclude src/tests/** -r lcov -e .ts -x \"*.ts\" npm run test"
},
"author": {
"email": "[email protected]",
"name": "Kosmas Papadatos",
"url": "https://github.com/kpapadatos"
},
"repository": {
"type": "git",
"url": "https://github.com/kpapadatos/locki"
},
"license": "GPL-2.0-only",
"devDependencies": {
"@angular-eslint/eslint-plugin": "^13.0.1",
"@types/chai": "^4.3.0",
"@types/mocha": "^9.1.0",
"@types/node": "^17.0.10",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"chai": "^4.3.4",
"del-cli": "^4.0.1",
"eslint": "^8.7.0",
"mocha": "^9.1.4",
"nodemon": "^2.0.15",
"nyc": "^15.1.0",
"source-map-support": "^0.5.21",
"ts-node": "^10.4.0",
"typescript": "^4.5.5"
},
"dependencies": {
"moment": "^2.29.1",
"redis": "4.0.2"
}
}