-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·75 lines (75 loc) · 2.27 KB
/
package.json
File metadata and controls
executable file
·75 lines (75 loc) · 2.27 KB
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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "live-mutex",
"version": "0.2.25",
"description": "Simple mutex that uses a TCP server; useful if you cannot install Redis, etc.",
"main": "dist/main.js",
"module": "dist/esm/main.js",
"typings": "dist/main.d.ts",
"types": "dist/main.d.ts",
"exports": {
".": {
"import": "./dist/esm/main.js",
"require": "./dist/main.js",
"types": "./dist/main.d.ts",
"default": "./dist/main.js"
}
},
"files": [
"dist",
"readme.md",
"license.md"
],
"sideEffects": false,
"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",
"lmx-quick-start": "assets/cli/quick-start.ts",
"lmx-status": "assets/cli/status.ts",
"lmx-test": "assets/cli/test-connection.ts"
},
"scripts": {
"compile": "tsc",
"compile:esm": "tsc --project tsconfig.esm.json",
"compile:watch": "tsc --watch",
"compile:test": "tsc --project tsconfig.test.json",
"compile:all": "npm run compile && npm run compile:test",
"compile:check": "tsc --noEmit",
"build": "npm run compile && npm run compile:esm && node scripts/add-esm-extensions.js && node scripts/fix-commonjs-import-meta.js",
"test": "node scripts/run-tests.js",
"test:old": "./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": "^2.2.13",
"chalk": "^2.4.2",
"tcp-ping": "^0.1.1",
"uuid": "^3.3.2"
},
"devDependencies": {
"@types/async": "^3.2.25",
"@types/node": "^10.1.2",
"@types/tcp-ping": "^0.1.0",
"@types/uuid": "^3.4.3",
"suman": "^1.1.51244",
"typescript": "^5.9.3"
}
}