forked from Glavin001/machinepack-utorrent
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
47 lines (47 loc) · 1.08 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
41
42
43
44
45
46
47
{
"name": "library-utorrent",
"version": "1.1.0",
"description": "Communicate with uTorrent client API to list and add torrents.",
"scripts": {
"test": "echo \"No test yet specified\" && exit 1"
},
"keywords": [
"uTorrent",
"torrent",
"library"
],
"author": "geco (https://github.com/geco)",
"repository": {
"type": "git",
"url": "git+https://github.com/geco/library-utorrent.git"
},
"license": "MIT",
"dependencies": {
"machine": "^10.0.0",
"utorrent-api": "^0.1.5"
},
"devDependencies": {
"test-machinepack-mocha": "^2.0.0"
},
"machinepack": {
"friendlyName": "uTorrent",
"machineDir": "machines/",
"machines": [
"add-torrent",
"list-torrents",
"get-torrent-details",
"get-settings",
"set-settings",
"create-client",
"add-torrent-url",
"start-torrent",
"stop-torrent",
"remove-torrent"
]
},
"bugs": {
"url": "https://github.com/geco/library-utorrent/issues"
},
"homepage": "https://github.com/geco/library-utorrent#readme",
"main": "index.js"
}