forked from aurbano/robinhood-node
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
45 lines (45 loc) · 1.08 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
{
"name": "robinhood",
"version": "1.8.0",
"description": "Comprehensive NodeJS API wrapper for the Robinhood API",
"main": "src/robinhood.js",
"typings": "robinhood.d.ts",
"scripts": {
"test": "nyc ava && npm run typescript",
"typescript": "tsc --project test/types/tsconfig.json",
"release": "standard-version"
},
"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",
"standard-version": "^7.0.0",
"typescript": "~3.6.3"
},
"dependencies": {
"@types/request": "~2.48.3",
"lodash": "^4.17.15",
"promise": "^8.0.3",
"query-string": "^4.3.2",
"request": "^2.88.0",
"should": "^11.1.1",
"uuid": "^8.3.1"
}
}