-
Notifications
You must be signed in to change notification settings - Fork 49
/
package.json
53 lines (53 loc) · 1.23 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
49
50
51
52
53
{
"name": "mal-scraper",
"version": "2.13.2",
"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"
]
}
}