UNPKG

stockfinder

Version:

Query IEX Cloud using an API key to get stock prices

72 lines (71 loc) 1.89 kB
{ "name": "stockfinder", "version": "3.1.1", "description": "Query IEX Cloud using an API key to get stock prices", "main": "built/src/index.js", "types": "built/src/index.d.ts", "scripts": { "build": "tsc", "prod": "tsc && node ./built/src/index.js", "lint": "eslint src/ --fix --ext .js,.jsx,.ts,.tsx", "debug": "tsc && node --inspect ./built/src/index.js", "test": "npx mocha", "snyk-protect": "snyk protect", "prepare": "npm run snyk-protect", "preversion": "npm test", "version": "git add .", "postversion": "git push && git push --tags", "prepublish": "tsc" }, "repository": { "type": "git", "url": "git+https://github.com/Mr-Que/Stock-Finder.git" }, "keywords": [ "Stock", "Finder", "Stocks", "IEX", "Cloud", "IEX", "Cloud" ], "author": "Austin McCalley", "license": "MIT", "bugs": { "url": "https://github.com/Mr-Que/Stock-Finder/issues" }, "homepage": "https://github.com/Mr-Que/Stock-Finder#readme", "dependencies": {}, "snyk": true, "devDependencies": { "@types/node-fetch": "^2.5.6", "@typescript-eslint/eslint-plugin": "^4.14.1", "@typescript-eslint/parser": "^4.14.1", "axios": "^0.21.1", "chai": "^4.2.0", "chai-as-promised": "^7.1.1", "crypto": "^1.0.1", "dotenv": "^8.2.0", "eslint": "^7.18.0", "eslint-config-airbnb-typescript": "^12.0.0", "eslint-config-prettier": "^7.2.0", "eslint-plugin-import": "^2.22.1", "eslint-plugin-prettier": "^3.3.1", "husky": "^4.0.3", "lint-staged": "^10.5.3", "mocha": "^7.0.0", "moment": "^2.29.1", "prettier": "^1.19.1", "snyk": "^1.305.1", "ts-node": "^8.6.2", "ts-node-dev": "^1.0.0-pre.44", "typescript": "^3.8.3" }, "husky": { "hooks": { "pre-commit": "npm test", "pre-push": "npm test" } } }