forked from JohnDeved/zooqle-api-ts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
56 lines (56 loc) · 1.3 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
{
"name": "@pct-org/zooqle",
"version": "1.0.49",
"description": "Promise based Zooqle Torrent Scraper written in TypeScript.",
"keywords": [
"zooqle",
"api",
"torrent",
"scraper",
"promise",
"pirate",
"piratebay",
"rargb",
"imdb",
"hash"
],
"homepage": "https://github.com/JohnDeved/zooqle-api-ts#readme",
"repository": {
"type": "git",
"url": "https://github.com/JohnDeved/zooqle-api-ts"
},
"bugs": {
"email": "[email protected]",
"url": "https://github.com/JohnDeved/zooqle-api-ts/issues"
},
"main": "dist/index.js",
"files": [
"dist"
],
"scripts": {
"build": "rimraf dist && tsc -p tsconfig.build.json",
"build:watch": "yarn build --watch",
"prepublish": "yarn build",
"test": "mocha ./dist/test",
"debug": "node --inspect-brk ./dist/debug"
},
"author": "discord: undefined#6078",
"license": "ISC",
"dependencies": {
"axios": "^0.18.0",
"bytes": "^3.1.0",
"cheerio": "^1.0.0-rc.2"
},
"devDependencies": {
"@types/chai": "^4.1.6",
"@types/cheerio": "^0.22.9",
"@types/mocha": "^5.2.5",
"@types/node": "^10.11.3",
"chai": "^4.2.0",
"mocha": "^5.2.0",
"rimraf": "^3.0.0",
"tslint": "^5.11.0",
"tslint-config-standard": "^8.0.1",
"typescript": "^3.1.1"
}
}