-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
78 lines (78 loc) · 1.78 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "google-img-scrap",
"version": "1.1.4",
"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": "jest --colors"
},
"files": [
"dist",
"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",
"dependencies": {
"axios": "^1.2.3",
"form-data": "^4.0.0"
},
"devDependencies": {
"@types/jest": "^29.2.6",
"@types/node": "^18.11.18",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"@typescript-eslint/parser": "^8.13.0",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"jest": "^29.3.1",
"prettier": "^3.3.3",
"ts-jest": "^29.0.5",
"ts-node": "^10.9.1",
"typescript": "^4.7.4"
}
}