-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 943 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": "comp308-group2-imdb-scraper",
"version": "0.0.1",
"private": true,
"scripts": {
"start": "node server.js"
},
"dependencies": {
"express": "latest",
"request": "latest",
"cheerio": "latest"
},
"engines": {
"node": ">=6.0.0",
"npm": ">=3.5.0"
},
"description": "## COMP308-Group2-Imdb-Scraper",
"main": "server.js",
"repository": {
"type": "git",
"url": "git+https://github.com/COMP308-Emerging-Technologies-Group2/COMP308-Group2-Imdb-Scraper"
},
"keywords": [
"NodeJS",
"ExpressJS",
"EJS"
],
"author": "Tony Bogun",
"license": "ISC",
"bugs": {
"url": "https://github.com/COMP308-Emerging-Technologies-Group2/COMP308-Group2-Imdb-Scraper/issues"
},
"homepage": "https://github.com/COMP308-Emerging-Technologies-Group2/COMP308-Group2-Imdb-Scraper/#readme",
"devDependencies": {
"@types/express": "^4.0.35",
"@types/node": "^7.0.13"
}
}