UNPKG

stonksjs

Version:

Algotrading utility scripts. To the moon!!! 🚀🚀🚀

108 lines (107 loc) • 2.32 kB
{ "name": "stonksjs", "version": "2.0.2", "description": "Algotrading utility scripts. To the moon!!! 🚀🚀🚀", "main": "lib/index.js", "files": [ "lib/", "config/" ], "directories": { "lib": "lib/", "doc": "docs/" }, "repository": { "type": "git", "url": "https://github.com/nielse63/stonksjs.git" }, "homepage": "https://nielse63.github.io/stonksjs/", "bugs": { "url": "https://github.com/nielse63/stonksjs/issues" }, "keywords": [ "robinhood", "stocks", "screener", "finviz", "dividends", "finance" ], "engines": { "node": "^12.18.1", "npm": "^6.14.4" }, "scripts": { "start": "node lib/index.js", "lint": "eslint --fix lib/ && prettier --write lib/", "test": "jest", "changelog": "auto-changelog", "release": "dotenv release-it", "docs": ".bin/docs" }, "author": { "name": "Erik Nielsen", "email": "erik@312development.com", "url": "https://github.com/nielse63/" }, "license": "ISC", "dependencies": { "algotrader": "^2.5.4", "axios": "^0.19.2", "cheerio": "^1.0.0-rc.3", "date-fns": "^2.15.0", "debug": "^4.1.1", "dotenv": "^8.2.0", "fs-extra": "^9.0.1", "lodash": "^4.17.19" }, "devDependencies": { "@babel/core": "^7.10.5", "auto-changelog": "^2.2.0", "babel-eslint": "^10.1.0", "babel-jest": "^25.5.1", "cross-env": "^7.0.2", "depcheck": "^0.9.2", "dotenv-cli": "^3.1.0", "eslint": "^6.8.0", "eslint-config-airbnb-base": "^14.1.0", "eslint-plugin-import": "^2.22.0", "eslint-plugin-jest": "^23.19.0", "husky": "^4.2.5", "jest": "^25.5.4", "jest-extended": "^0.11.5", "jsdoc-to-markdown": "^6.0.1", "lint-staged": "^10.2.9", "prettier": "^2.0.5", "release-it": "^13.6.6" }, "husky": { "hooks": { "pre-commit": "cp README.md docs/README.md && lint-staged" } }, "lint-staged": { "*.js": [ "eslint --fix", "prettier --write" ], "*.{json,md,html,css}": [ "prettier --write" ] }, "nodemonConfig": { "ignore": [ "__tests__/", "__mocks__/", "docs/*" ], "watch": [ "api/", "lib/" ], "env": { "NODE_ENV": "development" }, "ext": "js,json" } }