-
Notifications
You must be signed in to change notification settings - Fork 120
/
package.json
executable file
·54 lines (54 loc) · 1.14 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "algotrader",
"version": "2.5.4",
"description": "Algorithmically trade stocks and options using Robinhood, Yahoo Finance, and more.",
"main": "./index.js",
"scripts": {
"test": "ava"
},
"repository": {
"type": "git",
"url": "https://github.com/Ladinn/algotrader"
},
"keywords": [
"api",
"stocks",
"trading",
"broker",
"finance",
"algorithm",
"market",
"options",
"streaming",
"robinhood",
"yahoo finance",
"nasdaq",
"iex"
],
"author": "Ladinn",
"license": "ISC",
"bugs": {
"url": "https://github.com/Ladinn/algotrader/issues"
},
"homepage": "https://github.com/Ladinn/algotrader#readme",
"dependencies": {
"async": "^2.6.0",
"cheerio": "^1.0.0-rc.2",
"fast-csv": "^2.4.1",
"ftp": "^0.3.10",
"jsdoc-to-markdown": "^4.0.1",
"lodash": "^4.17.5",
"moment": "^2.22.0",
"node-schedule": "^1.3.0",
"node-uuid": "^1.4.8",
"ora": "^2.0.0",
"prompt": "^1.0.0",
"request": "^2.88.0",
"socket.io-client": "^2.1.0",
"uuid": "^3.3.2",
"xml-js": "^1.6.2"
},
"devDependencies": {
"ava": "^0.25.0"
}
}