forked from sonnyp/aria2.js
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 983 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
42
43
44
45
46
47
{
"name": "aria2",
"version": "4.0.3",
"description": "Library and cli for aria2, \"The next generation download utility.\"",
"homepage": "https://github.com/sonnyp/aria2.js",
"bugs": "https://github.com/sonnyp/aria2.js/issues",
"license": "ISC",
"author": "Sonny Piers <[email protected]>",
"keywords": [
"aria2",
"download",
"BitTorrent",
"HTTP",
"HTTPS",
"FTP",
"SFTP",
"MetaLink",
"magnet",
"torrent"
],
"bin": {
"aria2rpc": "./bin/cli.js"
},
"scripts": {
"preversion": "npm test",
"lint": "prettier -l **/*.js",
"unit": "ava",
"test": "npm run unit && npm run lint"
},
"repository": "github:sonnyp/aria2.js",
"dependencies": {
"commander": "^2.17.1",
"node-fetch": "^2.2.0",
"ws": "^6.0.0"
},
"devDependencies": {
"ava": "^0.25.0",
"prettier": "1.14.2"
},
"engines": {
"node": ">= 7.6.0"
},
"browser": {
"ws": false,
"node-fetch": false
}
}