-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
61 lines (61 loc) · 1.26 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "@geut/network-setup",
"version": "3.0.1",
"description": "Create network simulations to test your peers and connections",
"main": "index.js",
"files": [
"src",
"index.js"
],
"scripts": {
"test": "uvu",
"posttest": "npm run lint",
"lint": "standard",
"prepublishOnly": "npm test"
},
"dependencies": {
"@geut/randombytes": "^1.0.2",
"b4a": "^1.6.1",
"mostly-minimal-spanning-tree": "^1.0.2",
"nanocustomassert": "^1.0.0",
"nanoresource-promise": "^3.2.0",
"ngraph.generators": "^19.3.0",
"ngraph.graph": "^19.1.0",
"streamx": "^2.10.2"
},
"devDependencies": {
"standard": "^17.0.0",
"tinyspy": "^1.0.2",
"uvu": "^0.5.6"
},
"standard": {
"env": [
"node",
"browser"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/geut/network-setup.git"
},
"keywords": [
"simulator",
"network",
"peers",
"connections",
"graph",
"ngraph"
],
"author": {
"name": "GEUT",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/geut/network-setup/issues"
},
"homepage": "https://github.com/geut/network-setup#readme",
"publishConfig": {
"access": "public"
}
}