-
Notifications
You must be signed in to change notification settings - Fork 71
/
Copy pathpackage.json
60 lines (60 loc) · 1.35 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
54
55
56
57
58
59
60
{
"name": "images-scraper",
"version": "7.0.0",
"description": "Simple scraper for Google images using Puppeteer",
"main": "src/index.js",
"scripts": {
"test": "jest",
"check-codestyle": "prettier-check '**/*.{js,jsx,json,css,ts,tsx,md,yaml}'",
"fix-all-code-style": "prettier --write '**/*.{js,jsx,json,css,ts,tsx,md,yaml}'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/pevers/images-scraper.git"
},
"keywords": [
"scraper",
"google",
"images"
],
"author": "Peter Evers",
"license": "ISC",
"bugs": {
"url": "https://github.com/pevers/images-scraper/issues"
},
"homepage": "https://github.com/pevers/images-scraper#readme",
"dependencies": {
"cheerio": "^1.0.0-rc.12",
"puppeteer": "^15.3.1",
"winston": "^3.8.1"
},
"devDependencies": {
"axios": "^0.21.4",
"jest": "^26.6.3",
"prettier": "^2.7.1",
"prettier-check": "^2.0.0",
"pretty-quick": "^3.1.3",
"validator": "^13.7.0"
},
"prettier": {
"printWidth": 100,
"singleQuote": true,
"trailingComma": "es5",
"overrides": [
{
"files": "*.css",
"options": {
"useTabs": false,
"tabWidth": 2
}
},
{
"files": "*.yaml",
"options": {
"useTabs": false,
"tabWidth": 2
}
}
]
}
}