-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 870 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
{
"name": "bencode.js",
"version": "1.0.0",
"description": "bencode encoder/decoder",
"keywords": [
"bdecode",
"bencode",
"bencoding",
"bittorrent",
"torrent"
],
"homepage": "https://github.com/fanatid/bencode.js",
"bugs": {
"url": "https://github.com/fanatid/bencode.js/issues"
},
"license": "MIT",
"author": "Kirill Fomichev <[email protected]> (http://github.com/fanatid)",
"files": [
"lib"
],
"main": "./lib/bencode.js",
"repository": {
"type": "git",
"url": "https://github.com/fanatid/bencode.js.git"
},
"scripts": {
"coverage": "nyc npm run unit",
"lint": "standard",
"test": "npm run lint && npm run unit",
"unit": "tape test/*.js"
},
"dependencies": {
"bn.js": "^4.11.1"
},
"devDependencies": {
"nyc": "^6.1.1",
"standard": "^6.0.8",
"tape": "^4.5.1"
}
}