{
  "name": "ta-math-es",
  "version": "0.4.31",
  "description": "Technical analysis library in javascript. Calculates indicators and overlays from ohlcv data",
  "main": "dist/ta-math.esm.js",
  "types": "dist/ta-math.d.ts",
  "module": "dist/ta-math.esm.js",
  "browser": "dist/ta-math.esm.js",
  "files": [
    "dist"
  ],
  "scripts": {
    "build": "rollup -c",
    "watch": "rollup -cw",
    "test": "node -r esm ./test/test.js",
    "wasm": "asc src/index.ts -b dist/ta-math.wasm -O3 --runtime=half",
    "ci": "npm run build && npm run test",
    "cov": "nyc report --reporter=lcov",
    "http": "http-server -p 1234 -c-1",
    "python": "python ./test/expected.py"
  },
  "devDependencies": {
    "@babel/core": "7.9.0",
    "@babel/preset-env": "7.9.5",
    "assemblyscript": "^0.9.0",
    "codecov": "3.6.5",
    "esm": "^3.2.25",
    "nyc": "15.0.1",
    "rollup": "2.6.1",
    "rollup-plugin-babel": "4.4.0",
    "rollup-plugin-typescript2": "^0.27.0",
    "typescript": "^3.7.5",
    "zora": "^3.1.8"
  },
  "babel": {
    "presets": [
      "@babel/preset-env"
    ]
  },
  "nyc": {
    "reporter": [
      "lcov",
      "text"
    ],
    "include": "**/ta-math**"
  },
  "keywords": [
    "technical-indicators",
    "technical-analysis",
    "quantitative-finance",
    "correlation-matrix",
    "finance"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/munrocket/ta-math.git"
  },
  "author": "munrocket",
  "license": "MIT"
}
