UNPKG

@showr/indicators

Version:

Technical indicators for Trading made with Showr

87 lines (86 loc) 2.2 kB
{ "name": "@showr/indicators", "version": "0.1.3", "description": "Technical indicators for Trading made with Showr", "main": "dist/index.js", "types": "dist/index.d.ts", "files": [ "/dist" ], "scripts": { "build": "tsc", "prepare": "npm run build", "test": "jest --coverage --no-cache", "test:build": "jest __tests__ --coverage && cat ./coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js && rm -rf ./coverage", "docs:generate": "typedoc --options ./typedoc.js", "lint": "eslint src --ext .ts", "prettify": "prettier \"src/**/*.ts\" --config .prettierrc --write", "precommit": "lint-staged" }, "repository": { "type": "git", "url": "https://github.com/pratikgaloria/showr-indicators" }, "author": "Pratik Galoria <pratik.d.galoria@gmail.com> (https://github.com/pratikgaloria)", "bugs": { "url": "https://github.com/pratikgaloria/showr-indicators/issues" }, "homepage": "https://github.com/pratikgaloria/showr-indicators", "keywords": [ "stocks", "trading", "algorithm", "indicators", "bse", "nse", "sma", "ema", "rsi", "macd", "bollinger" ], "license": "MIT", "devDependencies": { "@babel/cli": "7.16.0", "@babel/core": "7.16.0", "@babel/preset-env": "7.16.4", "@types/jest": "27.0.3", "@types/jsonfile": "6.0.1", "@types/node": "16.11.11", "@typescript-eslint/eslint-plugin": "5.5.0", "@typescript-eslint/parser": "5.5.0", "babel-loader": "8.2.3", "coveralls": "3.1.1", "cross-env": "5.2.1", "esbuild": "0.14.1", "eslint": "8.3.0", "husky": "7.0.4", "jest": "27.4.0", "lint-staged": "12.1.2", "prettier": "2.5.0", "ts-jest": "27.0.7", "typedoc": "0.22.10", "typescript": "4.5.2" }, "dependencies": { "@showr/core": "1.5.0" }, "jest": { "testEnvironment": "node", "transform": { "^.+\\.ts$": "ts-jest" }, "collectCoverageFrom": [ "<rootDir>/src/**/*.ts" ], "modulePaths": [ "<rootDir>/src" ] }, "lint-staged": { "src/**/*.ts": [ "eslint src --ext .ts", "prettier --single-quote --write" ] } }