forked from aurbano/robinhood-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 836 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
{
"name": "robinhood",
"version": "1.1.1",
"description": "Comprehensive NodeJS API wrapper for the Robinhood API",
"main": "src/robinhood.js",
"scripts": {
"test": "nyc ava"
},
"repository": {
"type": "git",
"url": "https://github.com/aurbano/robinhood-node.git"
},
"keywords": [
"robinhood",
"trading",
"api",
"stock",
"finance"
],
"author": "Alejandro U. Alvarez",
"license": "MIT",
"bugs": {
"url": "https://github.com/aurbano/robinhood-node/issues"
},
"homepage": "https://github.com/aurbano/robinhood-node",
"devDependencies": {
"ava": "^0.17.0",
"coveralls": "^2.11.15",
"nyc": "^10.0.0"
},
"dependencies": {
"lodash": "^4.17.4",
"promise": "^7.1.1",
"request": "^2.79.0",
"should": "^11.1.1",
"query-string": "^4.3.2"
}
}