-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpackage.json
38 lines (38 loc) · 993 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
{
"name": "google-reviews-web-scraper",
"version": "1.0.2",
"description": "Retrieves google reviews through a web scraper and returns it as a json array",
"main": "getReviews.js",
"scripts": {
"start": "nodemon src/example.js",
"serve": "nodemon src/server.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": {
"name":"Benoît ARNOULT",
"email": "[email protected]",
"url": "https://www.benoit-arnoult.xyz/en"
},
"contributors": ["Benoît ARNOULT <[email protected]> (https://www.benoit-arnoult.xyz/en)"],
"license": "MIT",
"dependencies": {
"express": "^4.17.1",
"puppeteer": "^5.2.1"
},
"devDependencies": {
"nodemon": "^2.0.4"
},
"repository": {
"type": "git",
"url": "https://github.com/PiiXelx64/node-google-reviews-web-scraper.git"
},
"keywords": [
"gmaps",
"web scraping",
"google maps",
"google maps reviews",
"express",
"async",
"puppeteer"
]
}