-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
33 lines (33 loc) · 854 Bytes
/
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
{
"name": "anbuanime",
"version": "1.0.0",
"description": "Anime Streaming, Discovery API made with Cheerio and Express. Uses data from Gogoanime",
"main": "src/anime_parser.js",
"types": "src/types/index.d.ts",
"type": "module",
"scripts": {
"start": "node src/api.js",
"dev": "nodemon src/api.js",
"test": "jest --config ./jest.config.js"
},
"keywords": [
"anime",
"streaming",
"discovery",
"api",
"gogoanime"
],
"author": "https://github.com/anbuinfosec",
"license": "ISC",
"dependencies": {
"axios": "^1.1.2",
"cheerio": "^1.0.0-rc.10",
"cors": "^2.8.5",
"crypto-js": "^4.1.1",
"express": "^4.18.2",
"jest": "^29.5.0"
},
"devDependencies": {
"nodemon": "^2.0.21"
}
}