-
Notifications
You must be signed in to change notification settings - Fork 27
/
package.json
31 lines (31 loc) · 877 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
{
"name": "StockerBot",
"version": "1.0.0",
"description": "Twitter Bot to monitor and query financial news sources about publicy traded companies you are interested in",
"main": "index.js",
"scripts": {
"start": "npm run poll",
"poll": "node main.js --poll --firebase",
"search": "node main.js --search",
"search_poll": "node main.js --search_poll --firebase"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dwallach1/Stocker.git"
},
"author": "David Wallach",
"license": "MIT",
"bugs": {
"url": "https://github.com/dwallach1/Stocker/issues"
},
"homepage": "https://github.com/dwallach1/Stocker#readme",
"dependencies": {
"async": "^2.6.1",
"csv": "^3.1.0",
"csv-parse": "^2.5.0",
"events": "^3.0.0",
"firebase-admin": "^5.13.0",
"twit": "^2.2.11",
"unirest": "^0.5.1"
}
}