{
  "bugs": {
    "url": "https://github.com/bennycode/trading-signals/issues"
  },
  "dependencies": {
    "@types/big.js": "6.1.2",
    "big.js": "6.1.1"
  },
  "description": "Technical indicators to run technical analysis with JavaScript / TypeScript.",
  "devDependencies": {
    "@types/benchmark": "2.1.1",
    "@types/jasmine": "3.10.2",
    "@types/node": "16.11.11",
    "@typescript-eslint/eslint-plugin": "5.5.0",
    "@typescript-eslint/parser": "5.5.0",
    "benchmark": "2.1.4",
    "eslint": "8.3.0",
    "eslint-config-prettier": "8.3.0",
    "eslint-plugin-prettier": "4.0.0",
    "eslint-plugin-typescript-sort-keys": "2.1.0",
    "generate-changelog": "1.8.0",
    "husky": "4.3.8",
    "jasmine": "3.10.0",
    "lint-staged": "12.1.2",
    "nyc": "15.1.0",
    "prettier": "2.5.0",
    "pretty-quick": "3.1.2",
    "rimraf": "3.0.2",
    "ts-node": "10.4.0",
    "typescript": "4.5.2"
  },
  "engines": {
    "node": ">= 10.9",
    "yarn": ">= 1"
  },
  "files": [
    "dist",
    "!dist/start",
    "!dist/test",
    "!dist/**/*.test.*"
  ],
  "homepage": "https://documentup.com/bennycode/trading-signals",
  "keywords": [
    "adx",
    "analysis",
    "atr",
    "average",
    "bollinger",
    "dema",
    "dma",
    "ema",
    "exponential-moving-average",
    "indicator",
    "macd",
    "math",
    "moving-average",
    "roc",
    "rsi",
    "signals",
    "simple-moving-average",
    "sma",
    "smma",
    "technical",
    "technical-indicators",
    "technical-overlays",
    "trading"
  ],
  "license": "MIT",
  "main": "dist/index.js",
  "name": "trading-signals",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/bennycode/trading-signals.git"
  },
  "scripts": {
    "build": "tsc",
    "changelog:commit": "git add CHANGELOG.md && git commit -m \"docs: updated CHANGELOG.md\"",
    "clean": "rimraf .nyc_output coverage dist",
    "dist": "yarn clean && yarn build",
    "fix": "yarn fix:other && yarn fix:code",
    "fix:code": "yarn lint:code --fix",
    "fix:other": "yarn prettier --write",
    "lint": "yarn lint:types && yarn lint:code && yarn lint:other",
    "lint:code": "eslint --ignore-path .gitignore --ext .js,.jsx,.ts,.tsx .",
    "lint:other": "yarn prettier --list-different",
    "lint:types": "tsc --noEmit",
    "postversion": "git push origin && git push origin --tags && npm publish",
    "prettier": "prettier --ignore-path .gitignore --loglevel silent \"**/*.{json,scss,yml}\"",
    "preversion": "git checkout main && git pull && yarn && yarn test && yarn dist",
    "release:major": "generate-changelog -M -x \"chore,test\" && yarn changelog:commit && npm version major",
    "release:minor": "generate-changelog -m -x \"chore,test\" && yarn changelog:commit && npm version minor",
    "release:patch": "generate-changelog -p -x \"chore,test\" && yarn changelog:commit && npm version patch",
    "start:benchmark": "ts-node ./src/start/startBenchmark.ts",
    "test": "nyc --nycrc-path=nyc.config.coverage.json jasmine --config=jasmine.json",
    "test:dev": "nyc --nycrc-path=nyc.config.json jasmine --config=jasmine.json",
    "test:types": "yarn lint:types"
  },
  "version": "3.2.0"
}
