-
Notifications
You must be signed in to change notification settings - Fork 62
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 942 Bytes
/
Copy pathpackage.json
File metadata and controls
39 lines (39 loc) · 942 Bytes
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
{
"name": "aria2",
"version": "5.0.0",
"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": "./src/Aria2.js",
"author": "Sonny Piers <sonny@fastmail.net>",
"keywords": [
"aria2",
"download",
"BitTorrent",
"HTTP",
"HTTPS",
"FTP",
"SFTP",
"MetaLink",
"magnet",
"torrent"
],
"scripts": {
"preversion": "npm test",
"lint": "prettier -l **/*.js",
"unit": "node --test test/*.js",
"test": "npm run unit && npm run lint && npm run bundle",
"bundle": "rollup -c rollup.config.js",
"prepublishOnly": "npm run bundle"
},
"repository": "github:sonnyp/aria2.js",
"devDependencies": {
"prettier": "3.7.4",
"rollup": "^4.54.0"
},
"engines": {
"node": ">= 22.0.0"
}
}