馃挵 NPM package to get stock and historical price from finance.yahoo.com
at master 45 lines 1.2 kB view raw
1{ 2 "name": "yahoo-stock-api", 3 "version": "2.1.0", 4 "description": "Simple package to get stock price from yahoo finance", 5 "main": "dist/index.js", 6 "types": "dist/index.d.ts", 7 "scripts": { 8 "test": "ts-node src/test/test.ts", 9 "test1": "ts-node test.ts", 10 "lint": "eslint src/**/*.ts", 11 "build": "tsc" 12 }, 13 "repository": { 14 "type": "git", 15 "url": "git+https://github.com/phamleduy04/yahoo-stock-api.git" 16 }, 17 "author": "phamleduy04", 18 "license": "MIT", 19 "bugs": { 20 "url": "https://github.com/phamleduy04/yahoo-stock-api/issues" 21 }, 22 "homepage": "https://github.com/phamleduy04/yahoo-stock-api#readme", 23 "devDependencies": { 24 "@types/node": "^18.11.18", 25 "@types/numeral": "^2.0.2", 26 "@typescript-eslint/eslint-plugin": "^5.48.1", 27 "@typescript-eslint/parser": "^5.48.1", 28 "eslint": "^8.31.0", 29 "eslint-config-prettier": "^8.6.0", 30 "eslint-plugin-prettier": "^4.2.1", 31 "prettier": "^2.8.2", 32 "ts-node": "^10.9.1", 33 "tslib": "^2.4.1", 34 "typescript": "^4.9.4" 35 }, 36 "dependencies": { 37 "camelcase": "6.3.0", 38 "cheerio": "1.0.0-rc.12", 39 "numeral": "^2.0.6", 40 "undici": "^5.15.0" 41 }, 42 "files": [ 43 "dist" 44 ] 45}