This repository was archived by the owner on May 4, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.28 KB
/
Copy pathpackage.json
File metadata and controls
47 lines (47 loc) · 1.28 KB
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": "anbient-dl",
"version": "1.2.0",
"description": "CLI para download de animes do Anbient/Zippyshare.",
"main": "dist/index.js",
"scripts": {
"init": "rm -rf node_modules/ && rm -f package-lock.json && npm i && npm run build",
"build": "rm -rf dist/ && tsc"
},
"bin": {
"dl": "dist/index.js"
},
"repository": {
"type": "git",
"url": "https://github.com/ArturMiguel/anbient-dl.git"
},
"keywords": [
"Web-scraper",
"Anime",
"Downloader",
"Anbient"
],
"author": "Artur Miguel",
"license": "MIT",
"bugs": {
"url": "https://github.com/ArturMiguel/anbient-dl/issues"
},
"homepage": "https://github.com/ArturMiguel/anbient-dl#readme",
"dependencies": {
"colors": "^1.4.0",
"commander": "^4.1.0",
"inquirer": "^7.3.3",
"ora": "^4.0.3",
"progress": "^2.0.3",
"puppeteer": "^2.1.1",
"request": "^2.88.0",
"update-notifier": "^4.1.0"
},
"devDependencies": {
"@types/inquirer": "^7.3.1",
"@types/progress": "^2.0.3",
"@types/puppeteer": "^3.0.1",
"@types/request": "^2.48.5",
"@types/update-notifier": "^4.1.1",
"typescript": "^4.0.2"
}
}