-
-
Notifications
You must be signed in to change notification settings - Fork 36
/
package.json
72 lines (72 loc) · 1.66 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
{
"name": "bencode",
"description": "Bencode de/encoder",
"version": "4.0.0",
"bugs": {
"url": "https://github.com/webtorrent/node-bencode/issues"
},
"type": "module",
"contributors": [
{
"name": "Mark Schmale",
"email": "[email protected]",
"url": "http://masch.it/"
},
{
"name": "Jonas Hermsmeier",
"email": "[email protected]",
"url": "https://jhermsmeier.de/"
}
],
"devDependencies": {
"@webtorrent/semantic-release-config": "1.0.10",
"bencoding": "latest",
"bncode": "latest",
"browserify": "^17.0.0",
"btparse": "latest",
"dht-bencode": "latest",
"dht.js": "latest",
"nanobench": "3.0.0",
"semantic-release": "21.1.2",
"standard": "17.1.0",
"tap-spec": "5.0.0",
"tape": "5.9.0"
},
"keywords": [
"bdecode",
"bencode",
"bencoding",
"bittorrent",
"torrent"
],
"license": "MIT",
"engines": {
"node": ">=12.20.0"
},
"exports": {
"import": "./index.js"
},
"repository": {
"type": "git",
"url": "git://github.com/webtorrent/node-bencode.git"
},
"scripts": {
"benchmark": "nanobench benchmark/*.js",
"bundle": "mkdir -p dist && npm run bundle:lib && npm run bundle:test",
"bundle:lib": "browserify lib/index.js -s bencode -o dist/bencode.js",
"bundle:test": "browserify test/*.test.js -o dist/tests.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.2.2"
}
}