-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 953 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
{
"name": "carzone-scraper",
"type": "module",
"version": "1.0.0",
"description": "Command line tool to make a table of purchasing information from carzone.ie links.",
"main": "src/carzone-scraper.js",
"bin": {
"carzone-scraper": "src/carzone-scraper.js"
},
"scripts": {
"start": "node src/carzone-scraper.js",
"prepublishOnly": "echo 'Ready to publish'"
},
"keywords": [
"car",
"carzone",
"scraper",
"cli",
"command-line",
"javascript"
],
"author": "Vincent Lyons",
"license": "MIT",
"dependencies": {
"axios": "^1.4.0",
"cheerio": "^1.0.0-rc.12",
"cli-table3": "^0.6.0",
"inquirer": "^9.2.3",
"xlsx": "^0.18.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lyonsv/carzone-scraper.git"
},
"bugs": {
"url": "https://github.com/lyonsv/carzone-scraper/issues"
},
"homepage": "https://github.com/lyonsv/carzone-scraper#readme"
}