iaiuse commited on
Commit
ffa76a3
1 Parent(s): aa87df3

Create package.json

Browse files
Files changed (1) hide show
  1. package.json +16 -0
package.json ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ {
2
+ "name": "google-news-scraper-app",
3
+ "version": "1.0.0",
4
+ "description": "A simple app to fetch news using google-news-scraper and display it.",
5
+ "main": "app.js",
6
+ "scripts": {
7
+ "start": "node app.js"
8
+ },
9
+ "dependencies": {
10
+ "express": "^4.17.1",
11
+ "google-news-scraper": "^1.2.2",
12
+ "dotenv": "^8.2.0"
13
+ },
14
+ "author": "",
15
+ "license": "ISC"
16
+ }