-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 951 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
{
"name": "btparse",
"version": "1.0.2",
"description": "A modern bencode parser focused on speed and perfomance",
"main": "index.js",
"scripts": {
"cover": "nyc --reporter=html --reporter=text npm test",
"test": "node test/reporter.js",
"bench": "matcha ./bench/decode.js"
},
"repository": {
"type": "git",
"url": "git://github.com/reklatsmasters/btparse.git"
},
"keywords": [
"torrent",
"bittorrent",
"parser",
"bencoder",
"bdecoder",
"bencode",
"bdecode"
],
"author": {
"name": "Dmitry Tsvettsikh",
"email": "me@reklatsmasters.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/reklatsmasters/btparse/issues"
},
"homepage": "https://github.com/reklatsmasters/btparse",
"dependencies": {},
"devDependencies": {
"bencode": "^1.0.0",
"buffer-compare": "^1.1.1",
"matcha": "^0.7.0",
"nyc": "^10.1.2",
"tape": "^4.6.3"
}
}