{
  "name": "@lpezet/oura-ring-api-client",
  "version": "1.0.1",
  "description": "API client for Oura API",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "scripts": {
    "dev": "ts-node src/index.ts",
    "clean": "rimraf dist/*",
    "tsc": "tsc",
    "build": "npm run lint:fix && npm-run-all clean && npm run build:esm",
    "build:esm": "tsc -p tsconfig.esm.json",
    "build:dev": "npm run lint:fix && npm-run-all clean && npm run build:dev:esm && npm link",
    "build:dev:esm": "tsc -p tsconfig.esm.json --sourceMap",
    "start": "node .",
    "check-types": "tsc --noEmit",
    "format": "prettier --write 'src/**/*.{js,ts,json}'",
    "eslint": "eslint src/**/*.ts",
    "eslint:fix": "eslint src/**/*.ts --fix",
    "lint": "npm-run-all eslint check-types",
    "lint:fix": "npm-run-all eslint:fix check-types format",
    "test": "jest",
    "coverage.remote": "jest --coverage && coveralls < coverage/lcov.info",
    "coverage": "jest --coverage"
  },
  "keywords": [
    "oura",
    "oura ring",
    "oura api",
    "oura api v2"
  ],
  "author": "Luke Pezet",
  "contributors": [
    "Takahiro MITSUOKA"
  ],
  "homepage": "https://github.com/lpezet/oura-ring-api-client#readme",
  "bugs": {
    "url": "https://github.com/lpezet/oura-ring-api-client/issues",
    "email": "lpezet@gmail.com"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/lpezet/oura-ring-api-client.git"
  },
  "files": [
    "README.md",
    "LICENSE",
    "dist"
  ],
  "license": "MIT",
  "devDependencies": {
    "@types/jest": "^29.5.5",
    "@types/node": "^12.20.55",
    "@typescript-eslint/eslint-plugin": "^3.10.1",
    "@typescript-eslint/parser": "^3.10.1",
    "doctoc": "^2.2.1",
    "eslint": "^7.32.0",
    "eslint-config-prettier": "6.11.0",
    "husky": "^4.3.8",
    "jest": "^29.7.0",
    "lint-staged": "^10.5.4",
    "npm-run-all": "^4.1.5",
    "prettier": "2.0.5",
    "rimraf": "^3.0.2",
    "ts-jest": "^29.1.1",
    "ts-node": "^8.10.2",
    "tsc-alias": "^1.8.8",
    "typescript": "^4.9.5"
  },
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged"
    }
  },
  "lint-staged": {
    "src/**/*.{js,ts}": "eslint --cache --fix",
    "src/**/*.ts": "bash -c 'tsc --noEmit'",
    "src/**/*.{js,ts,json}": "prettier --write"
  },
  "dependencies": {
    "axios": "^0.26.1"
  },
  "jest": {
    "preset": "ts-jest",
    "testEnvironment": "node",
    "moduleNameMapper": {
      "^@api/(.*)$": "<rootDir>/src/$1",
      "^@api$": "<rootDir>/src/index.ts"
    }
  },
  "jest.old": {
    "moduleFileExtensions": [
      "js",
      "json",
      "ts"
    ],
    "rootDir": "test",
    "transform": {
      "^.+\\.(t|j)s$": [
        "ts-jest",
        {
          "tsconfig": "tsconfig.test.json"
        }
      ]
    },
    "collectCoverageFrom": [
      "**/*.(t|j)s"
    ],
    "coverageDirectory": "../coverage",
    "testEnvironment": "node",
    "moduleNameMapper": {
      "^@api/(.*)$": "./src/$1",
      "^@api$": "./src/index.ts"
    }
  }
}
