-
Notifications
You must be signed in to change notification settings - Fork 97
/
package.json
executable file
·71 lines (71 loc) · 1.62 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
{
"name": "torrent-search-api",
"version": "2.1.4",
"description": "Yet another node torrent scraper based on x-ray. (Support iptorrents, torrentleech, torrent9, Yyggtorrent, ThePiratebay, torrentz2, 1337x, KickassTorrent, Rarbg, TorrentProject, Yts, Limetorrents, Eztv)",
"main": "index.js",
"scripts": {
"test": "jest",
"test:watch": "jest watch",
"lint": "eslint ."
},
"keywords": [
"torrent",
"scraper",
"crawler",
"node",
"api",
"yggtorrent",
"torrentz2",
"torrentleech",
"iptorrents",
"1337x",
"thepiratebay",
"tpb",
"kickasstorrents",
"rarbg",
"torrentproject",
"yts",
"eztv",
"limetorrents"
],
"author": "Jimmy Laurent",
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/JimmyLaurent/torrent-search-api.git"
},
"dependencies": {
"cloudscraper": "^4.6.0",
"lodash": "^4.17.15",
"request": "^2.88.2",
"string-format": "^0.5.0",
"x-ray-scraper": "^3.0.5"
},
"devDependencies": {
"@types/jest": "^22.1.3",
"eslint": "^4.9.0",
"eslint-config-airbnb-base": "^12.1.0",
"eslint-plugin-import": "^2.7.0",
"install": "^0.10.4",
"jest": "^22.4.0",
"jest-junit": "^3.6.0",
"lint-staged": "^6.1.1",
"nock": "^9.1.6",
"prettier": "^1.10.2"
},
"jest": {
"testResultsProcessor": "jest-junit",
"testEnvironment": "node"
},
"jest-junit": {
"output": "./test-results/junit.xml"
},
"prettier": {
"printWidth": 100,
"singleQuote": true,
"trailingComma": "none",
"parser": "flow",
"semi": true,
"tabWidth": 2
}
}