forked from webtorrent/node-bencode
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1017 Bytes
/
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
{
"name": "bencode",
"description": "Bencode de/encoder",
"version": "0.11.0",
"bugs": {
"url": "https://github.com/themasch/node-bencode/issues"
},
"contributors": [
{
"name": "Mark Schmale",
"email": "[email protected]",
"url": "http://masch.it/"
},
{
"name": "Jonas Hermsmeier",
"email": "[email protected]",
"url": "https://jhermsmeier.de/"
}
],
"devDependencies": {
"bencoding": "latest",
"bncode": "latest",
"dht-bencode": "latest",
"dht.js": "latest",
"matcha": "~0.7.0",
"standard": "^8.1.0",
"tap-spec": "~4.1.0",
"tape": "~4.6.0"
},
"keywords": [
"bdecode",
"bencode",
"bencoding",
"bittorrent",
"torrent"
],
"license": "MIT",
"main": "lib",
"repository": {
"type": "git",
"url": "git://github.com/themasch/node-bencode.git"
},
"scripts": {
"bench": "matcha",
"style": "standard --fix",
"test": "standard && tape test/*.test.js | tap-spec"
}
}