This repository has been archived by the owner on May 17, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
79 lines (79 loc) · 2.16 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "atdownloader",
"description": "Download anime from Anime Twist.",
"version": "2.0.0",
"author": "Rafael Julio <[email protected]>",
"bin": {
"atdownloader": "./bin/run"
},
"bugs": "https://github.com/rafifos/atdownloader/issues",
"dependencies": {
"@oclif/command": "^1.5.18",
"@oclif/config": "1.13.3",
"@oclif/plugin-help": "2.2.1",
"@oclif/plugin-warn-if-update-available": "^1.7.0",
"cheerio": "^1.0.0-rc.3",
"downit": "^2.0.0",
"make-dir": "^3.0.0",
"ora": "^4.0.2",
"pretty-error": "^2.1.1",
"puppeteer": "^1.19.0"
},
"devDependencies": {
"@oclif/test": "^1.2.5",
"@oclif/tslint": "^3.1.1",
"@semantic-release/changelog": "^3.0.4",
"@semantic-release/commit-analyzer": "^6.3.0",
"@semantic-release/git": "^7.0.16",
"@semantic-release/github": "^5.4.2",
"@semantic-release/npm": "^5.1.13",
"@semantic-release/release-notes-generator": "^7.3.0",
"@types/chai": "^4.2.0",
"@types/cheerio": "^0.22.13",
"@types/mocha": "^5.2.7",
"@types/node": "^12.7.1",
"@types/puppeteer": "^1.19.0",
"chai": "^4.2.0",
"mocha": "^6.2.0",
"nyc": "^14.1.1",
"rimraf": "^3.0.0",
"semantic-release": "^15.13.19",
"ts-node": "^8.3.0",
"tslib": "^1.10.0",
"tslint": "^5.18.0",
"typescript": "^3.5.3"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/bin",
"/lib"
],
"homepage": "https://github.com/rafifos/atdownloader",
"keywords": [
"oclif",
"anime",
"downloader",
"anime-twist"
],
"license": "MIT",
"main": "lib/index.js",
"oclif": {
"bin": "atdownloader",
"plugins": [
"@oclif/plugin-warn-if-update-available"
],
"warn-if-update-available": {
"timeoutInDays": 7,
"message": "<%= config.name %> update available from <%= chalk.greenBright(config.version) %> to <%= chalk.greenBright(latest) %>."
}
},
"repository": "rafifos/atdownloader",
"scripts": {
"posttest": "tslint -p test -t stylish",
"prepack": "rimraf lib && tsc -b",
"test": "nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\"",
"semantic-release": "semantic-release"
}
}