-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 2.25 KB
/
package.json
File metadata and controls
63 lines (63 loc) · 2.25 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
{
"name": "@streamr/trackerless-network",
"version": "103.3.1",
"description": "Minimal and extendable implementation of the Streamr Network node.",
"repository": {
"type": "git",
"url": "git+https://github.com/streamr-dev/network.git",
"directory": "packages/trackerless-network"
},
"main": "./dist/exports.cjs",
"module": "./dist/exports.js",
"types": "./dist/exports.d.ts",
"files": [
"dist/exports.*",
"!*.tsbuildinfo",
"README.md"
],
"license": "STREAMR NETWORK OPEN SOURCE LICENSE",
"author": "Streamr Network AG <contact@streamr.network>",
"scripts": {
"prebuild": "npm run reset-self && ./proto.sh",
"build": "tsc -b",
"postbuild": "NODE_OPTIONS='--import tsx' rollup -c rollup.config.mts",
"check": "tsc -b tsconfig.jest.json",
"reset-self": "rimraf --glob 'dist/**/*.tsbuildinfo'",
"clean": "jest --clearCache --config '{}' || true; rm -rf dist generated *.tsbuildinfo node_modules/.cache || true",
"coverage": "jest --coverage",
"eslint": "eslint --cache --cache-location=node_modules/.cache/.eslintcache/ '*/**/*.{js,ts}'",
"test": "npm run test-unit && npm run test-integration && npm run test-end-to-end",
"test-browser": "karma start karma.config.ts",
"test-unit": "jest test/unit",
"test-integration": "jest --bail test/integration",
"test-end-to-end": "jest --bail test/end-to-end",
"network": "ts-node bin/network",
"run-joining-benchmark": "node --max-old-space-size=24288 dist/test/benchmark/first-message.js"
},
"dependencies": {
"@protobuf-ts/runtime": "^2.8.2",
"@protobuf-ts/runtime-rpc": "^2.8.2",
"@streamr/dht": "103.3.1",
"@streamr/proto-rpc": "103.3.1",
"@streamr/utils": "103.3.1",
"eventemitter3": "^5.0.0",
"lodash": "^4.17.23",
"ts-essentials": "^10.1.1",
"uuid": "^11.1.0",
"yallist": "^5.0.0"
},
"devDependencies": {
"@rollup/plugin-json": "^6.1.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@streamr/browser-test-runner": "^0.0.1",
"@streamr/test-utils": "103.3.1",
"@types/lodash": "^4.17.21",
"@types/yallist": "^5.0.0",
"expect": "^30.0.5",
"rimraf": "^6.1.2",
"rollup": "^4.55.1",
"rollup-plugin-dts": "^6.3.0",
"ts-node": "^10.9.2",
"tsx": "^4.21.0"
}
}