-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
executable file
·46 lines (46 loc) · 1.31 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
{
"name": "live-mutex",
"version": "0.2.24",
"description": "Simple mutex that uses a TCP server; useful if you cannot install Redis, etc.",
"main": "dist/main.js",
"typings": "dist/main.d.ts",
"types": "dist/main.d.ts",
"bin": {
"lmx_acquire_lock": "assets/cli/acquire.js",
"lmx_release_lock": "assets/cli/release.js",
"lmx_inspect_broker": "assets/cli/inspect.js",
"lmx_launch_broker": "assets/cli/start-server.js",
"lmx_start_server": "assets/cli/start-server.js",
"lmx_ls": "assets/cli/ls.js",
"lmx": "assets/lmx.sh"
},
"scripts": {
"test": "./scripts/test.sh",
"postinstall": "./assets/postinstall.sh"
},
"r2g": {
"test": "./test/setup-test.sh && suman --default"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ORESoftware/live-mutex.git"
},
"author": "Olegzandr VD",
"license": "MIT",
"bugs": {
"url": "https://github.com/ORESoftware/live-mutex/issues"
},
"homepage": "https://github.com/ORESoftware/live-mutex#readme",
"dependencies": {
"@oresoftware/json-stream-parser": "0.0.124",
"@oresoftware/linked-queue": "0.1.106",
"chalk": "^2.4.2",
"tcp-ping": "^0.1.1",
"uuid": "^3.3.2"
},
"devDependencies": {
"@types/node": "^10.1.2",
"@types/tcp-ping": "^0.1.0",
"@types/uuid": "^3.4.3"
}
}