UNPKG

1.2 kBJSONView Raw
1{
2 "name": "mal-scraper",
3 "version": "2.6.8",
4 "description": "Scrap everything you can from MyAnimeList.net",
5 "main": "src/index.js",
6 "scripts": {
7 "test": "npm run lint && nyc ava --verbose --serial test/*.test.js",
8 "lint": "standard | snazzy",
9 "lint:fix": "standard --fix | snazzy",
10 "coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov",
11 "cloc": "cloc $(git ls-files)"
12 },
13 "author": "Kylart",
14 "license": "MIT",
15 "repository": "https://github.com/Kylart/MalScraper",
16 "keywords": [
17 "MalScraper",
18 "MyAnimeList",
19 "Seasonal Anime",
20 "Information",
21 "Scraping",
22 "Anime",
23 "news"
24 ],
25 "engines": {
26 "node": ">=8"
27 },
28 "dependencies": {
29 "axios": "^0.19.0",
30 "cheerio": "^1.0.0-rc.3",
31 "js2xmlparser": "^4.0.0",
32 "match-sorter": "^4.0.2",
33 "request": "^2.88.0",
34 "xml2js": "^0.4.22"
35 },
36 "devDependencies": {
37 "ava": "^2.4.0",
38 "cloc": "^2.5.0",
39 "codecov": "^3.6.1",
40 "nyc": "^14.1.1",
41 "pre-commit": "^1.2.2",
42 "snazzy": "^8.0.0",
43 "standard": "^14.3.1"
44 },
45 "precommit": "lint",
46 "nyc": {
47 "exclude": [
48 "test",
49 "src/search",
50 "src/officialApi"
51 ]
52 }
53}