-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.26 KB
/
package.json
File metadata and controls
70 lines (70 loc) · 2.26 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
{
"name": "@lyrify/znl",
"version": "0.7.4",
"description": "ZNL - ZeroMQ Node Link",
"type": "module",
"main": "./index.js",
"exports": {
".": "./index.js"
},
"files": [
"index.js",
"src",
"README.md",
"LICENSE"
],
"scripts": {
"example:master": "node test/master/index.js",
"example:slave": "node test/slave/index.js",
"test": "pnpm test:integration",
"test:integration": "node test/integration/index.js",
"test:integration:constructor": "node test/integration/run-module.js constructor",
"test:integration:rpc": "node test/integration/run-module.js rpc",
"test:integration:lifecycle": "node test/integration/run-module.js lifecycle",
"test:integration:pubsub": "node test/integration/run-module.js pubsub",
"test:integration:security": "node test/integration/run-module.js security",
"test:integration:fs": "node test/integration/run-module.js fs",
"test:echo": "node test/master/test-echo-server.js",
"test:100": "node test/slave/test-100-concurrent.js",
"test:load": "node test/load-report.js",
"test:capture": "node test/capture-frames.js",
"check": "node --check index.js && node --check src/constants.js && node --check src/protocol.js && node --check src/security.js && node --check src/PendingManager.js && node --check src/SendQueue.js && node --check src/ZNL.js && node --check test/master/index.js && node --check test/slave/index.js && node --check test/master/test-echo-server.js && node --check test/slave/test-100-concurrent.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier . --check",
"format:write": "prettier . --write"
},
"keywords": [
"zeromq",
"router",
"dealer",
"nodejs",
"rpc"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/Lyrify-Cloud/ZNL.git"
},
"homepage": "https://github.com/Lyrify-Cloud/ZNL#readme",
"bugs": {
"url": "https://github.com/Lyrify-Cloud/ZNL/issues"
},
"engines": {
"node": ">=18"
},
"dependencies": {
"diff": "^8.0.2",
"zeromq": "^6.5.0"
},
"devDependencies": {
"eslint": "^9.39.4",
"eslint-plugin-import": "^2.32.0",
"prettier": "^3.8.1"
},
"pnpm": {
"onlyBuiltDependencies": [
"zeromq"
]
}
}