-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
61 lines (61 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "hafas-client-rpc",
"description": "Make JSON-RPC calls to hafas-client via WebSockets, stdio, UNIX domain sockets & NATS streaming.",
"version": "5.0.1",
"main": "index.js",
"files": [
"index.js",
"ws",
"stdio",
"socket",
"nats-streaming",
"lib",
"examples"
],
"keywords": [
"hafas-client",
"hafas",
"json-rpc",
"rpc",
"websocket",
"ws",
"stdio",
"socket",
"stdin",
"stdout"
],
"author": "Jannis R <mail@jannisr.de>",
"homepage": "https://github.com/derhuerst/hafas-client-rpc",
"repository": "derhuerst/hafas-client-rpc",
"bugs": "https://github.com/derhuerst/hafas-client-rpc/issues",
"license": "ISC",
"engines": {
"node": ">=16"
},
"dependencies": {
"debug": "^4.1.1",
"execa": "^5.1.1",
"isomorphic-ws": "^5.0.0",
"jsonrpc-lite": "^2.0.5",
"lodash.omit": "^4.5.0",
"node-nats-streaming": "^0.3.2",
"pump": "^3.0.0",
"stream-lines": "^1.2.0",
"websocket-pool": "^1.3.1",
"ws": "^8.8.1"
},
"devDependencies": {
"@derhuerst/round-robin-scheduler": "^1.0.1",
"eslint": "^8.29.0",
"hafas-client": "^6.0.0",
"nats-streaming-cli": "^1.0.2"
},
"peerDependencies": {
"hafas-client": ">=6.0 <=6.1"
},
"scripts": {
"lint": "eslint --ext .js,.mjs .",
"test": "env NODE_ENV=dev node test/index.js",
"prepublishOnly": "npm run lint && npm test"
}
}