This repository has been archived by the owner on Nov 16, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.45 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
{
"name": "tor",
"version": "0.0.1",
"description": "Flexget alternative",
"private": true,
"bin": {
"tor": "./bin/tor"
},
"scripts": {
"check-coverage": "istanbul check-coverage --functions 100 --statements 100 --branches 100 --lines 100",
"coverage": "istanbul cover _mocha -- -R spec --bail --check-leaks test/**/*.spec.js",
"lint": "prettier --write '**/*.js' bin/tor '!coverage/**/*.js'",
"start": "WORKING_DIRECTORY=$(pwd) ./bin/tor missing",
"test": "npm run lint && npm run coverage && npm run check-coverage"
},
"author": {
"name": "Michal Brašna",
"email": "michal.brasna@gmail.com"
},
"repository": {
"type": "git",
"url": "https://github.com/Gobie/tor"
},
"license": "MIT",
"bugs": "https://github.com/Gobie/tor/issues",
"dependencies": {
"autocmdr": "^0.0.8",
"bytes": "^2.1.0",
"child-process-promise": "^2.2.1",
"cloudscraper": "^4.5.0",
"commander": "^2.9.0",
"dataloader": "^2.0.0",
"humanize": "^0.0.9",
"inquirer": "^7.0.1",
"lodash": "^4.17.15",
"moment": "^2.15.2",
"open": "^7.0.0",
"p-queue": "^6.2.1",
"p-retry": "^4.2.0",
"parse-torrent-name": "^0.5.4",
"request": "^2.88.0",
"request-promise-native": "^1.0.8",
"syno": "^2.1.0",
"thepiratebay": "^1.4.7",
"trakt.tv": "^7.2.0",
"xml2js": "^0.4.23"
},
"devDependencies": {
"istanbul": "^0.4.1",
"mocha": "^6.2.2",
"prettier": "^1.19.1"
}
}