This repository has been archived by the owner on Nov 27, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 184
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
introduce native promise support incl documentation & types
- Loading branch information
Tyler Miller
committed
Aug 10, 2021
1 parent
2df92d7
commit cb53627
Showing
8 changed files
with
855 additions
and
626 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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" | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.