{
  "name": "ohlc-resample",
  "version": "1.2.1",
  "description": "Resample (inter-convert) trade, ticks or OHLCV data to different time frames, includes CLI",
  "main": "dist/index.js",
  "files": [
    "dist"
  ],
  "scripts": {
    "prebuild": "rimraf build",
    "build": "tsc --build",
    "build:check": "node -e \"require('./dist')\"",
    "prepublishOnly": "npm test && npm run build && npm run coveralls && npm run build && npm run build:check",
    "test": "jest",
    "coveralls": "jest --coverage --coverageReporters=text-lcov | coveralls"
  },
  "bin": {
    "ohlc": "./src/cli.ts"
  },
  "keywords": [
    "ohlc",
    "ohlcv",
    "resample",
    "tickchart",
    "candlestick",
    "ccxt",
    "stock",
    "chart",
    "analysis",
    "cli"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/adiled/ohlc-resample"
  },
  "author": "Adil Shaikh <hello@adils.me> (http://www.adils.me)",
  "license": "LGPL-3.0",
  "bugs": {
    "url": "https://github.com/adiled/ohlc-resample/issues"
  },
  "homepage": "https://github.com/adiled/ohlc-resample#readme",
  "devDependencies": {
    "@types/jest": "^27.0.2",
    "@types/lodash": "^4.14.173",
    "coveralls": "^3.1.1",
    "jest": ">=27.2.1",
    "rimraf": "^3.0.2",
    "ts-jest": ">=25.1.0",
    "typescript": "^4.4.3"
  },
  "dependencies": {
    "commander": "^9.4.1",
    "fast-csv": "^4.3.6",
    "lodash": "^4.17.21",
    "ts-node": "^10.9.1"
  }
}
