-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 919 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
40
{
"name": "scrape-kos",
"version": "1.0.0",
"description": "Scrape dailykos.com for news and run comments in mongo",
"main": "server.js",
"scripts": {
"test": "test",
"start": "node server.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/slsriehl/scrape-kos.git"
},
"keywords": [
"scrape",
"cheerio",
"mongo",
"node"
],
"author": "Sarah Riehl",
"license": "ISC",
"bugs": {
"url": "https://github.com/slsriehl/scrape-kos/issues"
},
"homepage": "https://github.com/slsriehl/scrape-kos#readme",
"dependencies": {
"bluebird": "^3.4.6",
"body-parser": "^1.15.2",
"cheerio": "^0.22.0",
"express": "^4.14.0",
"express-handlebars": "^3.0.0",
"hbs": "^4.0.1",
"jquery": "^3.1.1",
"mongodb": "^2.2.12",
"mongoose": "^4.7.1",
"morgan": "^1.7.0",
"request": "^2.79.0",
"winston": "^2.3.0"
}
}