-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackage.json
55 lines (55 loc) · 1.23 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
{
"name": "torrent-indexer",
"version": "1.2.1",
"description": "Yet another node.js torrent scraper based on seek-torrent but made especially for movies, series, anime and music (scrape from 1337x, eztv, limetorrents, rarbg, skytorrents, torrentproject, yts and zooqle)",
"main": "src/torrentIndexer.js",
"scripts": {
"test": "ava",
"pretest": "npm run lint",
"lint": "eslint ."
},
"engines": {
"node": ">=8.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/sayem314/torrent-indexer.git"
},
"funding": {
"type": "individual",
"url": "https://github.com/sponsors/sayem314"
},
"keywords": [
"torrent",
"search",
"crawler",
"seek",
"index",
"download",
"movie",
"series",
"tracker",
"tv",
"show"
],
"author": "Sayem Chowdhury",
"license": "MIT",
"dependencies": {
"axios": "^0.19.2",
"node-html-parser": "^1.2.16",
"parse-torrent-title": "^1.2.0",
"retry-axios": "^2.1.2",
"string-similarity": "^4.0.1"
},
"devDependencies": {
"ava": "^3.8.1",
"chai": "4.2.0",
"eslint": "6.8.0"
},
"ava": {
"concurrency": 4,
"failWithoutAssertions": false,
"verbose": true,
"timeout": "30s"
}
}