-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1014 Bytes
/
package.json
File metadata and controls
42 lines (42 loc) · 1014 Bytes
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
{
"name": "bookcovers",
"version": "0.1.2",
"author": "e-e-e",
"description": "A federated search for thumbnail images of book covers",
"engines": {
"node": ">=10"
},
"repository": {
"type": "git",
"url": "git+https://github.com/e-e-e/bookcovers.git"
},
"homepage": "https://github.com/e-e-e/bookcovers",
"bugs": {
"url": "https://github.com/e-e-e/bookcovers/issues"
},
"main": "src/index.js",
"bin": {
"bookcovers": "src/cli.js"
},
"dependencies": {
"commander": "^6.2.1",
"library-lib": "0.0.1",
"puppeteer": "^5.5.0",
"puppeteer-extra": "^3.1.17",
"puppeteer-extra-plugin-stealth": "^2.7.5",
"request": "^2.88.0",
"request-promise-native": "^1.0.7"
},
"devDependencies": {
"eslint": "^7.15.0",
"eslint-config-prettier": "^7.1.0",
"jest": "^26.6.3",
"prettier": "^2.2.1",
"tmpl": "^1.0.5"
},
"scripts": {
"test": "jest",
"lint": "prettier src --write && eslint src --fix"
},
"license": "ISC"
}