forked from webtorrent/node-bencode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.42 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.42 KB
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
{
"name": "bencode",
"description": "Bencode de/encoder",
"version": "3.0.3",
"bugs": {
"url": "https://github.com/themasch/node-bencode/issues"
},
"type": "module",
"contributors": [
{
"name": "Mark Schmale",
"email": "masch@masch.it",
"url": "http://masch.it/"
},
{
"name": "Jonas Hermsmeier",
"email": "jhermsmeier@gmail.com",
"url": "https://jhermsmeier.de/"
}
],
"devDependencies": {
"@webtorrent/semantic-release-config": "1.0.9",
"bencoding": "latest",
"bncode": "latest",
"btparse": "latest",
"dht-bencode": "latest",
"dht.js": "latest",
"nanobench": "3.0.0",
"semantic-release": "19.0.5",
"standard": "17.0.0",
"tap-spec": "5.0.0",
"tape": "5.6.6"
},
"keywords": [
"bdecode",
"bencode",
"bencoding",
"bittorrent",
"torrent"
],
"license": "MIT",
"engines": {
"node": ">=12.20.0"
},
"exports": {
"import": "./index.js"
},
"repository": {
"type": "git",
"url": "git://github.com/themasch/node-bencode.git"
},
"scripts": {
"benchmark": "nanobench benchmark/*.js",
"style": "standard --fix",
"test": "standard && tape test/*.test.js | tap-spec"
},
"renovate": {
"extends": [
"github>webtorrent/renovate-config"
]
},
"release": {
"extends": "@webtorrent/semantic-release-config"
},
"dependencies": {
"uint8-util": "^2.1.6"
}
}