-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
32 lines (32 loc) · 886 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
{
"name": "financial-scraper",
"version": "1.0.0",
"description": "",
"main": "Main.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "knex migrate:latest --connection $DATABASE_URL && node Main.js fetch all"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/robgraeber/financial-scraper.git"
},
"author": "Rob Graeber",
"license": "ISC",
"bugs": {
"url": "https://github.com/robgraeber/financial-scraper/issues"
},
"homepage": "https://github.com/robgraeber/financial-scraper#readme",
"dependencies": {
"bluebird": "^3.4.1",
"commander": "^2.8.1",
"csv-parse": "^0.1.4",
"knex": "^1.0.7",
"moment": "^2.13.0",
"moment-timezone": "^0.5.4",
"pg": "^8.7.3",
"request-promise": "^0.4.3",
"winston2": "^1.0.3",
"xlsx": "github:robgraeber/js-xlsx"
}
}