-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
48 lines (48 loc) · 999 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
38
39
40
41
42
43
44
45
46
47
48
{
"name": "@monibrand/google-html-parser",
"version": "0.6.12",
"description": "Parse Search Engine Results Pages to retrieve organic results, ads, shopping and more",
"main": "index.js",
"scripts": {
"test": "mocha",
"generate-mock-data": "node ./test/mocks/generate-mock-data.js"
},
"repository": {
"type": "git",
"url": "https://github.com/monibrand/google-html-parser"
},
"keywords": [
"parser",
"google",
"bing",
"html",
"ads",
"search",
"engine",
"adwords",
"serp"
],
"author": "Majewan Interactive",
"license": "GPL-v3",
"bugs": {
"url": "https://github.com/monibrand/google-html-parser/issues"
},
"files": [
"index.js",
"README.md",
"modules/"
],
"devDependencies": {
"minimist": "^1.2.5",
"mocha": "^9.2.0"
},
"dependencies": {
"bluebird": "^3.7.2",
"cheerio": "^1.0.0-rc.6",
"debug": "^4.3.4",
"lodash": "^4.17.21"
},
"engines": {
"node": ">=6"
}
}