This repository was archived by the owner on Jun 18, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
91 lines (91 loc) · 2.79 KB
/
package.json
File metadata and controls
91 lines (91 loc) · 2.79 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"name": "streamr-broker",
"version": "20.0.0",
"description": "A full-featured broker node implementation for the Streamr Network.",
"repository": {
"type": "git",
"url": "git+https://github.com/streamr-dev/broker.git"
},
"bin": {
"broker": "bin/broker.js",
"tracker": "bin/tracker.js",
"delete-expired-data": "bin/delete-expired-data.js"
},
"main": "bin/broker.js",
"scripts": {
"prepare": "tsc -p tsconfig-build.json",
"test": "jest test/unit test/integration && npm run test-sequential",
"build": "tsc -p tsconfig-build.json",
"test-unit": "jest test/unit",
"test-sequential": "jest --maxWorkers=1 test/sequential # always run sequential tests with maxWorkers=1",
"test-integration": "jest --forceExit test/integration && npm run test-sequential",
"eslint": "eslint ."
},
"author": "Streamr Network AG <contact@streamr.com>",
"license": "STREAMR NETWORK OPEN SOURCE LICENSE",
"dependencies": {
"@pm2/io": "^4.3.5",
"@sentry/node": "^6.2.3",
"@teppeis/multimaps": "^2.0.0",
"@types/cors": "^2.8.10",
"@types/express": "^4.17.11",
"@types/heap": "^0.2.28",
"@types/jest": "^26.0.22",
"@types/memoizee": "^0.4.5",
"@types/merge2": "^1.3.0",
"@types/node-fetch": "^2.5.10",
"@types/pino": "^6.3.7",
"@types/pump": "^1.1.1",
"@types/qs": "^6.9.6",
"@types/sinon": "^10.0.0",
"@types/split2": "^2.1.6",
"@types/stream-to-array": "^2.3.0",
"@types/supertest": "^2.0.11",
"@types/uuid": "^8.3.0",
"@types/ws": "^7.4.1",
"abort-controller": "^3.0.0",
"ajv": "^8.0.1",
"ajv-formats": "^2.0.1",
"arraybuffer-to-string": "^1.0.2",
"body-parser": "^1.19.0",
"cassandra-driver": "^4.6.1",
"commander": "^7.2.0",
"cors": "^2.7.1",
"ethers": "^5.0.32",
"express": "^4.17.1",
"heap": "^0.2.6",
"memoizee": "^0.4.15",
"merge2": "^1.4.1",
"mqtt-connection": "^4.1.0",
"node-fetch": "^2.6.1",
"p-limit": "^3.1.0",
"pino": "^6.11.2",
"pino-pretty": "^4.7.1",
"public-ip": "^4.0.3",
"pump": "^3.0.0",
"qs": "^6.10.1",
"split2": "^3.2.2",
"streamr-client": "^5.2.1",
"streamr-network": "^24.3.0",
"ts-jest": "^26.5.4",
"typescript": "^4.2.4",
"uWebSockets.js": "github:uNetworking/uWebSockets.js#v18.14.0",
"uuid": "^8.3.2",
"ws": "^7.4.4"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^4.22.1",
"@typescript-eslint/parser": "^4.22.1",
"async-mqtt": "^2.6.1",
"buffer-reader": "^0.1.0",
"eslint": "^7.25.0",
"eslint-config-streamr-ts": "^3.0.0",
"eslint-plugin-promise": "^5.1.0",
"jest": "^26.6.3",
"jest-circus": "^26.6.3",
"sinon": "^10.0.0",
"stream-to-array": "^2.3.0",
"streamr-test-utils": "^1.3.2",
"supertest": "^6.1.3"
}
}