-
Notifications
You must be signed in to change notification settings - Fork 23
/
package.json
81 lines (81 loc) · 1.77 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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
"name": "@geut/discovery-swarm-webrtc",
"version": "4.3.1",
"description": "discovery-swarm for WebRTC.",
"main": "index.js",
"files": [
"lib",
"bin",
"index.js",
"server.js"
],
"bin": {
"discovery-swarm-webrtc": "bin/index.js"
},
"scripts": {
"test": "airtap tests/connectivity.test.js --loopback 127.0.0.1",
"posttest": "npm run lint",
"lint": "standard \"**/*.js\"",
"start": "node bin/index.js",
"version": "chan release --allow-yanked ${npm_package_version} && git add .",
"prepublishOnly": "npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/geut/discovery-swarm-webrtc.git"
},
"keywords": [
"swarm",
"webrtc",
"geut"
],
"author": {
"name": "GEUT",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/geut/discovery-swarm-webrtc/issues"
},
"homepage": "https://github.com/geut/discovery-swarm-webrtc#readme",
"dependencies": {
"debug": "^4.1.1",
"end-of-stream": "^1.4.4",
"minimist": "^1.2.0",
"mostly-minimal-spanning-tree": "^1.0.2",
"nanocustomassert": "^1.0.0",
"nanoerror": "^1.1.0",
"pump": "^3.0.0",
"socket-signal-websocket": "^9.1.0"
},
"devDependencies": {
"@geut/chan": "^2.1.1",
"airtap": "^4.0.0",
"airtap-playwright": "^1.0.0",
"ngraph.graph": "^19.0.1",
"ngraph.path": "^1.3.1",
"standard": "^14.3.1",
"tape": "^4.12.0"
},
"publishConfig": {
"access": "public"
},
"standard": {
"env": [
"browser",
"commonjs",
"es6",
"node",
"jest"
],
"globals": [
"Atomics",
"SharedArrayBuffer",
"PATH",
"page",
"browser",
"context",
"jestPuppeteer"
]
}
}