-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.48 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.48 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
{
"name": "@streamr/cli-tools",
"version": "103.3.1",
"description": "Command line tools for Streamr",
"repository": {
"type": "git",
"url": "git+https://github.com/streamr-dev/network.git",
"directory": "packages/cli-tools"
},
"files": [
"dist",
"!*.tsbuildinfo",
"README.md",
"LICENSE"
],
"bin": {
"streamr": "dist/bin/streamr.js"
},
"scripts": {
"build": "tsc -b",
"check": "tsc -p tsconfig.jest.json",
"clean": "jest --clearCache --config '{}' || true; rm -rf dist *.tsbuildinfo node_modules/.cache || true",
"eslint": "eslint --cache --cache-location=node_modules/.cache/.eslintcache/ '*/**/*.{js,ts}'",
"test": "npm run build && jest --bail --forceExit"
},
"keywords": [
"streamr",
"cli",
"tool",
"utility"
],
"author": "Streamr Network AG <contact@streamr.com>",
"license": "AGPL-3.0",
"dependencies": {
"@streamr/config": "^5.9.2",
"@streamr/dht": "103.3.1",
"@streamr/network-contracts": "^9.1.0",
"@streamr/sdk": "103.3.1",
"@streamr/trackerless-network": "103.3.1",
"@streamr/utils": "103.3.1",
"commander": "^14.0.2",
"easy-table": "^1.1.1",
"ethers": "^6.13.0",
"event-stream": "^4.0.1",
"lodash": "^4.18.1",
"semver": "^7.7.4"
},
"devDependencies": {
"@streamr/test-utils": "103.3.1",
"@types/event-stream": "^4.0.6",
"@types/lodash": "^4.17.24",
"@types/merge2": "^1.4.4",
"@types/semver": "^7.7.1",
"merge2": "^1.4.1"
}
}