-
-
Notifications
You must be signed in to change notification settings - Fork 85
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.27 KB
/
package.json
File metadata and controls
52 lines (52 loc) · 1.27 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
{
"name": "parse-torrent",
"description": "Parse a torrent identifier (magnet uri, .torrent file, info hash)",
"version": "5.8.3",
"author": {
"name": "WebTorrent, LLC",
"email": "feross@webtorrent.io",
"url": "https://webtorrent.io"
},
"bin": "./bin/cmd.js",
"bugs": {
"url": "https://github.com/webtorrent/parse-torrent/issues"
},
"dependencies": {
"blob-to-buffer": "^1.2.6",
"get-stdin": "^6.0.0",
"magnet-uri": "^5.1.3",
"parse-torrent-file": "^4.0.0",
"simple-get": "^2.0.0"
},
"devDependencies": {
"airtap": "0.0.4",
"bittorrent-dht": "^7.3.1",
"brfs": "^1.0.0",
"ed25519-supercop": "^1.0.2",
"standard": "*",
"tape": "^4.0.0",
"webtorrent-fixtures": "^1.0.0",
"xtend": "^4.0.0"
},
"keywords": [
".torrent",
"bittorrent",
"parse torrent",
"peer-to-peer",
"read torrent",
"torrent",
"webtorrent"
],
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/webtorrent/parse-torrent.git"
},
"scripts": {
"test": "standard && npm run test-node && npm run test-browser",
"test-browser": "airtap -- test/basic.js",
"test-browser-local": "airtap --local -- test/basic.js",
"test-node": "tape test/*.js"
}
}