UNPKG

@showr/core

Version:
88 lines (87 loc) 2.21 kB
{ "name": "@showr/core", "version": "1.5.0", "description": "Core library for 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-core" }, "author": "Pratik Galoria <pratik.d.galoria@gmail.com> (https://github.com/pratikgaloria)", "bugs": { "url": "https://github.com/pratikgaloria/showr-core/issues" }, "homepage": "https://github.com/pratikgaloria/showr-core", "keywords": [ "stocks", "trading", "broker", "finance", "algorithm", "backtest", "indicators", "market", "streaming", "bse", "nse", "library" ], "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", "eslint": "8.5.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": {}, "jest": { "testEnvironment": "node", "testRegex": "__tests__.*.(test|spec).ts$", "transform": { "^.+\\.ts$": "ts-jest" }, "collectCoverageFrom": [ "<rootDir>/src/**/*.ts" ], "coveragePathIgnorePatterns": [ "index.ts" ], "modulePaths": [ "<rootDir>/src" ] }, "lint-staged": { "src/**/*.ts": [ "eslint src --ext .ts", "prettier --single-quote --write" ] } }