-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1013 Bytes
/
package.json
File metadata and controls
46 lines (46 loc) · 1013 Bytes
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
{
"name": "animeflv-api",
"version": "2.0.0",
"description": "Un web-scrapper cuya función es obtener información del sitio conocido como AnimeFLV.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"start": "node dist/index.js",
"test": "mocha -r ts-node/register ./test/test.ts",
"build": "tsc"
},
"repository": {
"type": "git",
"url": "https://github.com/MixDevCode/animeflv-api.git"
},
"keywords": [
"scrapper",
"animeflv",
"anime"
],
"contributors": [
{
"name": "MixDevCode",
"url": "https://github.com/MixDevCode/"
},
{
"name": "ShompiFlen",
"url": "https://github.com/Shompi"
}
],
"license": "ISC",
"engines": {
"node": ">=16.0.0"
},
"dependencies": {
"cheerio": "^1.0.0-rc.12",
"cloudscraper": "^4.6.0"
},
"devDependencies": {
"@types/chai": "^4.3.4",
"@types/mocha": "^10.0.1",
"chai": "^4.3.7",
"mocha": "^10.2.0",
"ts-node": "^10.9.1"
}
}