-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
80 lines (80 loc) · 1.59 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
{
"name": "bittorrent-lsd",
"description": "Local Service Discovery (BEP14) implementation",
"version": "2.0.0",
"author": {
"name": "WebTorrent LLC",
"email": "[email protected]",
"url": "https://webtorrent.io"
},
"chromeapp": {
"dgram": "chrome-dgram"
},
"contributors": [
{
"name": "Julen Garcia Leunda",
"email": "[email protected]"
}
],
"bugs": {
"url": "https://github.com/webtorrent/bittorrent-lsd/issues"
},
"type": "module",
"dependencies": {
"chrome-dgram": "^3.0.6",
"debug": "^4.2.0"
},
"devDependencies": {
"@webtorrent/semantic-release-config": "1.0.10",
"semantic-release": "20.1.3",
"sinon": "15.2.0",
"standard": "*",
"tape": "5.9.0"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/feross"
},
{
"type": "patreon",
"url": "https://www.patreon.com/feross"
},
{
"type": "consulting",
"url": "https://feross.org/support"
}
],
"keywords": [
"bittorrent",
"bep14",
"lsd",
"local service discovery",
"protocol",
"peer",
"p2p",
"peer-to-peer",
"webtorrent"
],
"engines": {
"node": ">=12.20.0"
},
"exports": {
"import": "./index.js"
},
"license": "MIT",
"release": {
"extends": "@webtorrent/semantic-release-config"
},
"renovate": {
"extends": [
"github>webtorrent/renovate-config"
]
},
"scripts": {
"lint": "standard",
"lint:fix": "standard --fix",
"test": "npm run lint && npm run test:tape",
"test:tape": "tape test/*.js"
}
}