-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
24 lines (24 loc) · 739 Bytes
/
package.json
File metadata and controls
24 lines (24 loc) · 739 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"name": "nodejs-scraper",
"version": "0.1.0",
"description": "(2022) Use JavaScript technologies to crawl and click buttons on websites with GUI. Tested on Windows and Ubuntu Linux.",
"main": "src/app.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "yarn node src/app.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kkamara/nodejs-scraper.git"
},
"author": "https://github.com/kkamara",
"license": "BSD-3-Clause",
"bugs": {
"url": "https://github.com/kkamara/nodejs-scraper/issues"
},
"homepage": "https://github.com/kkamara/nodejs-scraper#readme",
"dependencies": {
"dotenv": "^16.5.0",
"selenium-webdriver": "^4.32.0"
}
}