-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
40 lines (40 loc) · 1.1 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
{
"name": "magnet-to-torrent",
"version": "1.0.8",
"description": "convert magnet link to torrent download link",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"publish": "git push origin --tags && git push origin",
"release:patch": "npm version patch && npm publish --access public",
"release:minor": "npm version minor && npm publish --access public",
"release:major": "npm version major && npm publish --access public"
},
"repository": {
"type": "git",
"url": "https://github.com/lwhiteley/magnet-to-torrent.git"
},
"keywords": [
"magnet",
"torrent",
"magnettotorrent",
"magnet2torrent",
"torcache",
"torrage",
"bt.box"
],
"author": "Layton Whiteley",
"license": "MIT",
"bugs": {
"url": "https://github.com/lwhiteley/magnet-to-torrent/issues"
},
"homepage": "https://github.com/lwhiteley/magnet-to-torrent",
"dependencies": {
"bluebird": "^3.5.1",
"debug": "^3.1.0",
"lodash": "^4.17.15",
"magnet-uri": "^5.1.7",
"needle": "^2.1.1",
"validator": "^9.3.0"
}
}