-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
79 lines (79 loc) · 1.88 KB
/
Copy pathpackage.json
File metadata and controls
79 lines (79 loc) · 1.88 KB
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
"name": "google-img-scrap",
"version": "1.2.1",
"description": "Scrap images from google images with customs pre filled google dork options",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"example": "node ./example/index.js",
"build": "npm run prettier && npm run lint && npm run fastBuild",
"fastBuild": "tsc",
"lint": "eslint . --ext .ts",
"prettier": "prettier --write .",
"test": "node --experimental-vm-modules ./node_modules/jest/bin/jest.js"
},
"files": [
"dist",
"!dist/core/cookies-cache.json",
"CHANGELOG.md",
"README.md",
"tsconfig.json",
"LICENSE"
],
"repository": {
"type": "git",
"url": "git+https://github.com/yoannchb-pro/google-img-scrap.git"
},
"keywords": [
"google",
"image",
"scrap",
"options",
"google-scrap",
"dork",
"google-dork",
"reverse-search-engine",
"query",
"powerfull",
"easy",
"type",
"color",
"extension",
"filter",
"date",
"licence"
],
"author": "yoannchb",
"contributors": [
{
"name": "christophe77",
"url": "https://github.com/christophe77"
},
{
"name": "GaspardCulis",
"url": "https://github.com/GaspardCulis"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/yoannchb-pro/google-img-scrap/issues"
},
"homepage": "https://github.com/yoannchb-pro/google-img-scrap#readme",
"devDependencies": {
"@types/jest": "^29.5.14",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^8.60.1",
"@typescript-eslint/parser": "^8.60.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"jest": "^29.0.0",
"prettier": "^3.8.3",
"ts-jest": "^29.4.11",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
},
"dependencies": {
"impit": "^0.14.1",
"puppeteer-real-browser": "^1.4.4"
}
}