-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
36 lines (36 loc) · 963 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
{
"name": "web_scraper",
"version": "1.1.0",
"description": "An assignment made with Node.js and some web scraping libraries",
"main": "index.js",
"bin": "bin.js",
"pkg": {
"assets": "./node_modules/figlet/fonts/Standard.flf"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node bin.js",
"build": "pkg . --out-path build"
},
"keywords": [
"Node.js",
"web",
"scrape"
],
"repository": {
"type": "git",
"url": "https://github.com/sebastian-porling/web-scraper-nodejs-sp-mk"
},
"author": "Sebastian Porling, Mehtab Kayani",
"license": "MIT",
"dependencies": {
"axios": "^0.20.0",
"chalk": "^4.1.0",
"cheerio": "^1.0.0-rc.3",
"figlet": "^1.5.0",
"jsonfile": "^6.0.1",
"ora": "^5.0.0",
"pkg": "^4.4.9",
"validate.js": "^0.13.1"
}
}