-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
89 lines (89 loc) · 2.1 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
{
"name": "robinhood-observer",
"version": "1.0.7",
"description": "Comprehensive client featuring RxJS Streams and a CLI for Robinhood Free Stock Trading. A drop in replacement for @aurbano\robinhood which includes callback, promise and observable support.",
"main": "src/index.js",
"scripts": {
"test": "mocha test --recursive",
"pretest": "eslint --ignore-path .eslintignore ."
},
"repository": {
"type": "git",
"url": "https://github.com/jspenc72/robinhood-observer.git"
},
"keywords": [
"robinhood",
"stocks",
"broker",
"algo",
"trade",
"trading",
"options",
"bluebird",
"rxjs",
"rx",
"day-trading",
"stocks",
"streaming",
"finance",
"market",
"nyse",
"nasdaq",
"algotrade",
"algorithmic",
"algorithmic trading",
"high",
"frequency"
],
"author": "jspenc72",
"license": "ISC",
"bugs": {
"url": "https://github.com/jspenc72/robinhood-observer/issues"
},
"homepage": "https://github.com/jspenc72/robinhood-observer",
"dependencies": {
"bluebird": "^3.4.6",
"braces": "^3.0.2",
"commander": "^2.20.0",
"console.table": "^0.10.0",
"cryptiles": "^4.1.3",
"death": "^1.1.0",
"debug": "^4.1.1",
"diff": "^4.0.1",
"esm": "^3.2.25",
"extend": "^3.0.2",
"growl": "^1.10.5",
"hoek": "^6.1.3",
"js-yaml": "^3.13.1",
"lodash": "^4.17.21",
"request": "^2.75.0",
"request-promise": "^4.1.1",
"rx": "^4.1.0",
"rxjs": "^5.0.0-beta.12",
"sshpk": "^1.16.1",
"stringstream": "^1.0.0"
},
"devDependencies": {
"ava": "^0.17.0",
"coveralls": "^2.11.15",
"eslint": "^6.1.0",
"eslint-config-airbnb": "^17.1.1",
"eslint-config-strongloop": "^2.1.0",
"eslint-plugin-import": "^2.18.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.14.3",
"eslint-utils": ">=1.4.1",
"mocha": "^3.1.0",
"nyc": "^10.0.0",
"should": "^4.3.0"
},
"files": [
"src/crypto/*",
"src/indicators/*",
"src/*"
],
"bin": {
"rh": "./src/index.js",
"robinhood": "./src/index.js"
}
}