-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
48 lines (48 loc) · 1.2 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
{
"name": "@justalk/anime-api",
"version": "3.0.0",
"description": "An api for searching download links, streaming links, pages for your favorite animes",
"main": "src/index.js",
"engines": {
"node": ">=12.0.0"
},
"scripts": {
"test": "xo && nyc --reporter=html --reporter=text ava --verbose --timeout=2m",
"test-no": "ava tests/*/*.js --verbose --timeout=2m",
"test-p": "ava tests/dynamic/tests_search.js --verbose --timeout=2m",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JustalK/ANIME-API.git"
},
"keywords": [
"anime",
"download",
"scraper",
"search",
"manga",
"anime-api",
"streaming"
],
"author": "Justal Kevin",
"license": "MIT",
"bugs": {
"url": "https://github.com/JustalK/ANIME-API/issues"
},
"homepage": "https://github.com/JustalK/ANIME-API#readme",
"devDependencies": {
"ava": "^3.13.0",
"coveralls": "^3.1.0",
"nock": "^13.0.4",
"nyc": "^15.1.0",
"xo": "^0.33.1"
},
"dependencies": {
"got": "^11.7.0",
"js-levenshtein": "^1.1.6",
"jsdom": "^16.4.0",
"puppeteer": "^5.3.1",
"winston": "^3.3.3"
}
}