-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
37 lines (37 loc) · 948 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
34
35
36
37
{
"name": "archive_of_anna",
"version": "0.1.0",
"description": "Unofficial Anna's Archive API written in JS.",
"main": "index.js",
"keywords": [
"annas_archive",
"zlibrary",
"api",
"books",
"ebooks",
"book",
"ebook",
"z-lib",
"library",
"1lib",
"shadow library"
],
"scripts": {
"test": "nyc --reporter=html --check-coverage --lines 90 --per-file mocha spec/**/*.js --recursive --timeout=10000 --exit --reporter mocha-junit-reporter --reporter-options mochaFile=reports/mocha/test-results.xml",
"lint": "eslint '**/*.js' --ignore-pattern node_modules/"
},
"author": "Tejas Shetty",
"license": "MIT",
"dependencies": {
"axios": "^1.1.2",
"cheerio": "^1.0.0-rc.12"
},
"devDependencies": {
"chai": "^4.3.6",
"eslint": "^8.25.0",
"eslint-config-google": "^0.14.0",
"mocha": "^10.1.0",
"mocha-junit-reporter": "^2.1.1",
"nyc": "^15.1.0"
}
}