-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
42 lines (42 loc) · 1.01 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
{
"name": "@hyperswarm/network",
"version": "2.1.0",
"description": "The networking guts of Hyperswarm",
"main": "index.js",
"scripts": {
"test": "tap -T test/*.test.js && standard --fix",
"cov": "tap -T --100 test/*.test.js",
"ci": "standard && tap -T test/*.test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hyperswarm/network.git"
},
"keywords": [
"hyperswarm",
"networking",
"p2p",
"network"
],
"author": "Mathias Buus (@mafintosh)",
"contributors": [
"David Mark Clements (@davidmarkclem)"
],
"license": "MIT",
"bugs": {
"url": "https://github.com/hyperswarm/network/issues"
},
"homepage": "https://github.com/hyperswarm/network#readme",
"dependencies": {
"@hyperswarm/discovery": "^2.0.0",
"nanoresource": "^1.3.0",
"utp-native": "^2.2.1"
},
"devDependencies": {
"@hyperswarm/dht": "^4.0.0",
"events.once": "^2.0.2",
"get-port": "^5.0.0",
"standard": "^12.0.1",
"tap": "^12.6.6"
}
}