UNPKG

@johndoeantler/mal-scraper

Version:

Scrap everything you can from MyAnimeList.net

54 lines (53 loc) 1.28 kB
{ "name": "@johndoeantler/mal-scraper", "version": "2.13.1", "description": "Scrap everything you can from MyAnimeList.net", "main": "src/index.js", "types": "src/index.d.ts", "scripts": { "test": "npm run lint && nyc ava --verbose --timeout=1m --serial test/*.test.js", "test-no": "nyc ava --verbose --timeout=1m --serial test/*.test.js", "lint": "standard | snazzy", "lint:fix": "standard --fix | snazzy", "coverage": "nyc report --reporter=text-lcov > coverage.lcov && codecov", "cloc": "cloc $(git ls-files)" }, "author": "Kylart", "license": "MIT", "repository": "https://github.com/Kylart/MalScraper", "keywords": [ "MalScraper", "MyAnimeList", "Seasonal Anime", "Information", "Scraping", "Anime", "news" ], "engines": { "node": ">=8" }, "dependencies": { "axios": "^1.4.0", "cheerio": "^1.0.0-rc.12", "match-sorter": "^6.3.1" }, "devDependencies": { "ava": "^3.9.0", "cloc": "^2.5.0", "codecov": "^3.6.1", "nock": "^13.0.4", "nyc": "^14.1.1", "pre-commit": "^1.2.2", "snazzy": "^8.0.0", "standard": "^14.3.1" }, "precommit": "lint", "nyc": { "exclude": [ "test", "src/search", "src/officialApi" ] } }