Skip to content
This repository has been archived by the owner on Nov 27, 2023. It is now read-only.

Commit

Permalink
introduce native promise support incl documentation & types
Browse files Browse the repository at this point in the history
  • Loading branch information
Tyler Miller committed Aug 16, 2021
1 parent 2df92d7 commit d1c3ed2
Show file tree
Hide file tree
Showing 8 changed files with 852 additions and 626 deletions.
722 changes: 394 additions & 328 deletions README.md

Large diffs are not rendered by default.

103 changes: 60 additions & 43 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,45 +1,62 @@
{
"name": "robinhood",
"version": "1.7.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"
}
"name": "robinhood",
"version": "1.7.0",
"description": "Comprehensive NodeJS API wrapper for the Robinhood API",
"main": "src/robinhood.js",
"typings": "types/robinhood.d.ts",
"typesVersions": {
"<4.1": {
"promises": [
"types/promises.v3.d.ts"
]
},
">=4.1": {
"promises": [
"types/promises.d.ts"
]
}
},
"exports": {
".": "./src/robinhood.js",
"./promises": "./src/promises.js",
"./package.json": "./package.json"
},
"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"
}
}
254 changes: 0 additions & 254 deletions robinhood.d.ts

This file was deleted.

Loading

0 comments on commit d1c3ed2

Please sign in to comment.