-
Notifications
You must be signed in to change notification settings - Fork 63
/
package.json
43 lines (43 loc) · 1019 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
{
"name": "aria2",
"version": "4.1.2",
"description": "Library and for aria2, \"The next generation download utility.\"",
"homepage": "https://github.com/sonnyp/aria2.js",
"bugs": "https://github.com/sonnyp/aria2.js/issues",
"license": "ISC",
"type": "module",
"main": "./cjs/Aria2.js",
"module": "./src/Aria2.js",
"author": "Sonny Piers <[email protected]>",
"keywords": [
"aria2",
"download",
"BitTorrent",
"HTTP",
"HTTPS",
"FTP",
"SFTP",
"MetaLink",
"magnet",
"torrent"
],
"scripts": {
"preversion": "npm test",
"lint": "prettier -l **/*.js",
"unit": "ava",
"test": "npm run unit && npm run lint",
"prepublishOnly": "rollup -c rollup.config.js"
},
"repository": "github:sonnyp/aria2.js",
"devDependencies": {
"ava": "^3.15.0",
"node-fetch": "^2.6.1",
"prettier": "2.3.2",
"rollup": "^2.56.3",
"rollup-plugin-polyfill-node": "^0.7.0",
"ws": "^8.2.0"
},
"engines": {
"node": ">= 12.4.0"
}
}