-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
120 lines (120 loc) · 3.72 KB
/
package.json
File metadata and controls
120 lines (120 loc) · 3.72 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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
{
"name": "trac-peer",
"main": "src/index.js",
"version": "0.4.5",
"type": "module",
"pear": {
"name": "trac-peer",
"type": "terminal"
},
"repository": {
"type": "git",
"url": "https://github.com/Trac-Systems/trac-peer"
},
"exports": {
".": {
"node": "./src/index.js",
"default": "./src/index.js"
},
"./src/*": "./src/*"
},
"scripts": {
"peer:run": "node scripts/run-peer.mjs",
"peer:run-rpc": "node scripts/run-peer.mjs --rpc",
"peer:smoke": "node scripts/smoke-msb-sync.mjs",
"peer:pear": "pear run -d scripts/run-peer.mjs",
"peer:pear-rpc": "pear run -d scripts/run-peer.mjs --rpc",
"test:unit:node": "brittle-node -t 60000 tests/unit/unit.test.js",
"test:unit:bare": "brittle-bare -t 60000 tests/unit/unit.test.js",
"test:unit:all": "(npm run test:unit:node && npm run test:unit:bare) || exit 1",
"test:acceptance:node": "brittle-node -t 120000 tests/acceptance/acceptance.test.js",
"test:acceptance:bare": "brittle-bare -t 120000 tests/acceptance/acceptance.test.js",
"test:acceptance:all": "(npm run test:acceptance:node && npm run test:acceptance:bare) || exit 1",
"test:all": "npm run test:unit:all && npm run test:acceptance:all"
},
"dependencies": {
"@tracsystems/blake3": "^0.0.15",
"assert": "npm:bare-node-assert",
"autobase": "7.6.3",
"b4a": "1.6.7",
"bare-assert": "1.0.2",
"bare-buffer": "3.1.2",
"bare-console": "6.0.1",
"bare-crypto": "1.12.0",
"bare-events": "2.5.4",
"bare-fetch": "2.2.2",
"bare-fs": "^4.1.5",
"bare-http1": "4.0.2",
"bare-https": "2.0.0",
"bare-inspector": "4.0.1",
"bare-module": "4.8.4",
"bare-os": "3.6.1",
"bare-path": "3.0.0",
"bare-process": "4.2.1",
"bare-readline": "1.0.7",
"bare-repl": "4.0.0",
"bare-stream": "2.6.5",
"bare-subprocess": "5.0.4",
"bare-timers": "3.0.1",
"bare-tls": "2.0.4",
"bare-tty": "5.0.2",
"bare-url": "2.1.5",
"bare-utils": "1.5.1",
"bare-worker": "3.0.0",
"bare-zlib": "1.2.5",
"bip39": "3.1.0",
"buffer": "npm:bare-node-buffer",
"child_process": "npm:bare-node-child-process",
"compact-encoding": "2.16.1",
"console": "npm:bare-node-console",
"corestore": "7.4.4",
"crypto": "npm:bare-node-crypto",
"debounceify": "1.1.0",
"events": "npm:bare-node-events",
"fastest-validator": "1.19.0",
"fetch": "npm:bare-node-fetch",
"fs": "npm:bare-node-fs",
"http": "npm:bare-node-http",
"https": "npm:bare-node-https",
"hyperbee": "^2.24.2",
"hypercore": "11.8.3",
"hypercore-crypto": "^3.4.0",
"hyperdht": "^6.20.5",
"hyperswarm": "^4.11.5",
"inspector": "npm:bare-node-inspector",
"is-options": "1.0.2",
"module": "npm:bare-node-module",
"multicoin-address-validator": "0.5.25",
"os": "npm:bare-node-os",
"path": "npm:bare-node-path",
"pear-interface": "1.1.0",
"process": "npm:bare-node-process",
"protomux": "^3.10.1",
"protomux-wakeup": "^2.4.0",
"readline": "npm:bare-node-readline",
"ready-resource": "1.1.2",
"repl": "npm:bare-node-repl",
"safety-catch": "1.0.2",
"sodium-native": "5.0.1",
"stream": "npm:bare-node-stream",
"timers": "npm:bare-node-timers",
"tls": "npm:bare-node-tls",
"trac-crypto-api": "^0.1.5",
"trac-msb": "^0.2.16",
"trac-wallet": "^1.0.4",
"tty": "npm:bare-node-tty",
"url": "npm:bare-node-url",
"util": "npm:bare-node-util",
"worker_threads": "npm:bare-node-worker-threads",
"xache": "1.2.0",
"zlib": "npm:bare-node-zlib"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public",
"brittle": "3.0.0"
},
"devDependencies": {
"brittle": "^3.19.1"
}
}