UNPKG

robinhood-yolo

Version:

NodeJS API wrapper for Robinhood Options trading and CLI to trade from your terminal

75 lines (74 loc) 2.29 kB
{ "name": "robinhood-yolo", "version": "0.5.2", "description": "NodeJS API wrapper for Robinhood Options trading and CLI to trade from your terminal", "main": "./js/index.js", "files": [ "/js" ], "scripts": { "test_prepare": "mv /root/node_json_db/yolo_config.json /root/node_json_db/dummy_config.json", "test_finish": "mv /root/node_json_db/dummy_config.json /root/node_json_db/yolo_config.json", "dev-checkout": "git checkout dev", "commit": "npm run dev-checkout && git add . && git commit -m", "bump-patch": "npm run dev-checkout && npm version patch", "bump-minor": "npm run dev-checkout && npm version minor", "bump-major": "npm run dev-checkout && npm version major", "release": "npm run dev-checkout && git push origin dev && git checkout master && git merge dev && git push origin master && git push --tags && git checkout dev", "release-patch": "npm run bump-patch && npm run release", "release-minor": "npm run bump-minor && npm run release", "release-major": "npm run bump-major && npm run release", "test": "./node_modules/.bin/mocha js/tests", "compile": "grunt sync", "watch": "grunt watch" }, "bin": { "yolo": "./js/utils/yolo.js" }, "author": "Edmund Pfeil {edmundpf@buffalo.edu}", "homepage": "https://github.com/edmundpf/robinhood_yolo", "repository": { "type": "git", "url": "https://github.com/edmundpf/robinhood_yolo" }, "keywords": [ "robinhood", "trading", "options", "stocks", "finance", "nyse", "api", "algo", "trade", "algorithmic" ], "license": "MIT", "dependencies": { "axios": "^0.19.2", "base-64": "^0.1.0", "chalk": "^2.4.2", "commander": "^2.20.0", "death": "^1.1.0", "edit-json-file": "^1.4.0", "fs-extra": "^9.0.1", "inquirer": "^6.5.0", "jsonfile": "^5.0.0", "lodash.camelcase": "^4.3.0", "lodash.startcase": "^4.4.0", "moment": "^2.24.0", "print-tools-js": "^1.2.0", "terminal-kit": "^1.28.3", "utf8": "^3.0.0", "uuidv4": "^6.1.1" }, "devDependencies": { "chai": "*", "grunt": "*", "grunt-contrib-clean": "*", "grunt-contrib-coffee": "*", "grunt-contrib-copy": "*", "grunt-contrib-watch": "*", "mocha": "*" } }