-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
57 lines (57 loc) · 1.22 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
{
"name": "addr-to-ip-port",
"description": "Convert an 'address:port' string to an array [address:string, port:number]",
"type": "module",
"version": "2.0.0",
"author": {
"name": "WebTorrent, LLC",
"email": "[email protected]",
"url": "https://webtorrent.io"
},
"bugs": {
"url": "https://github.com/webtorrent/addr-to-ip-port/issues"
},
"dependencies": {},
"devDependencies": {
"@webtorrent/semantic-release-config": "1.0.10",
"benchmark": "2.1.4",
"semantic-release": "21.1.2",
"tape": "5.9.0"
},
"engines": {
"node": ">=12.20.0"
},
"exports": {
"import": "./index.js"
},
"homepage": "https://github.com/webtorrent/addr-to-ip-port",
"keywords": [
"convert",
"address",
"port",
"cache",
"string",
"array",
"ip",
"addr to ip port",
"webtorrent"
],
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/webtorrent/addr-to-ip-port.git"
},
"scripts": {
"test": "tape test/*.js",
"perf": "node perf/basic.js"
},
"renovate": {
"extends": [
"github>webtorrent/renovate-config"
]
},
"release": {
"extends": "@webtorrent/semantic-release-config"
}
}