-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathpackage.json
85 lines (85 loc) · 1.77 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
80
81
82
83
84
85
{
"name": "node-raspar",
"version": "1.2.6",
"description": "Easily scrap the web for torrent and media files.",
"main": "index.js",
"scripts": {
"start": "node . api",
"dev": "nodemon --trace-warnings . api",
"test": "jest --verbose",
"test:watch": "jest --verbose --watchAll"
},
"engines": {
"node": ">=14.x <17.x"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kodjunkie/node-raspar.git"
},
"keywords": [
"music",
"api",
"download",
"search",
"torrent",
"mp3",
"mp4",
"video",
"scraping",
"crawling",
"spider",
"free",
"nodejs",
"lossless",
"EDM",
"instrumentals",
"beats",
"node"
],
"author": "Lawrence Onah <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/kodjunkie/node-raspar/issues"
},
"homepage": "https://github.com/kodjunkie/node-raspar#readme",
"dependencies": {
"cache-manager": "^3.6.1",
"cache-manager-fs-hash": "0.0.9",
"commander": "^2.20.3",
"express": "^4.17.3",
"express-validator": "^6.14.0",
"jquery": "^3.6.0",
"puppeteer": "^13.6.0",
"puppeteer-extra": "^3.2.3",
"puppeteer-extra-plugin-adblocker": "^2.12.0",
"puppeteer-extra-plugin-anonymize-ua": "^2.3.3",
"puppeteer-extra-plugin-stealth": "^2.9.0",
"swagger-jsdoc": "^6.2.0",
"swagger-ui-express": "^4.3.0"
},
"devDependencies": {
"@types/jest": "^26.0.24",
"eslint": "^7.32.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^3.4.1",
"jest": "^27.5.1",
"nodemon": "^2.0.16",
"prettier": "^2.6.2"
},
"bin": "./index.js",
"jest": {
"testEnvironment": "node",
"setupFilesAfterEnv": [
"./setup-tests.js"
]
},
"nodemonConfig": {
"ignore": [
"__tests__/*",
"node_modules/*",
"docker/*",
"temp/*"
]
}
}