matcha-stock
Version:
A simple CLI command to get stocks information from Yahoo Finance
65 lines (64 loc) • 1.66 kB
JSON
{
"name": "matcha-stock",
"description": "A simple CLI command to get stocks information from Yahoo Finance",
"version": "0.0.5",
"author": "Raphael MANSUY @raphaelmansuy",
"bin": {
"matcha-stock": "./bin/run"
},
"bugs": "https://github.com/raphaelmansuy/matcha-stock/issues",
"dependencies": {
"@oclif/command": "^1",
"@oclif/config": "^1",
"@oclif/plugin-help": "^3",
"@typescript-eslint/eslint-plugin": "^4.14.0",
"@typescript-eslint/parser": "^4.14.0",
"axios": "^0.21.1",
"eslint-config-prettier": "^7.2.0",
"eslint-plugin-prettier": "^3.3.1",
"prettier": "^2.2.1",
"tslib": "^1"
},
"devDependencies": {
"@oclif/dev-cli": "^1",
"@oclif/test": "^1",
"@types/chai": "^4",
"@types/mocha": "^5",
"@types/node": "^10",
"chai": "^4",
"eslint": "^7.18.0",
"eslint-config-oclif": "^3.1",
"eslint-config-oclif-typescript": "^0.1",
"mocha": "^5",
"nyc": "^14",
"ts-node": "^8",
"typescript": "^3.3"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"/bin",
"/lib"
],
"homepage": "https://github.com/raphaelmansuy/matcha-stock",
"keywords": [
"oclif",
"matcha",
"yahoo-finance",
"cli"
],
"license": "MIT",
"main": "lib/index.js",
"oclif": {
"bin": "matcha-stock"
},
"repository": "raphaelmansuy/matcha-stock",
"scripts": {
"posttest": "eslint . --ext .ts --config .eslintrc",
"prepack": "rm -rf lib && tsc -b ",
"test": "nyc --extension .ts mocha --forbid-only \"test/**/*.test.ts\"",
"version": "oclif-dev readme && git add README.md"
},
"types": "lib/index.d.ts"
}