{
  "name": "zenmoney-api",
  "version": "2.0.0",
  "description": "A nodejs implementation of zenmoney api: https://github.com/zenmoney/ZenPlugins/wiki/ZenMoney-API",
  "keywords": [
    "zenmoney"
  ],
  "author": "SleepWalker <dev@udf.su>",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/SleepWalker/zenmoney-api.git"
  },
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "engines": {
    "node": ">=16.0.0"
  },
  "files": [
    "dist"
  ],
  "scripts": {
    "prepare": "npm run husky:enable",
    "build": "rm -fr ./dist && tsc -d --declaration --noEmit false --outDir ./dist",
    "test": "jest",
    "lint": "eslint --fix .",
    "lint:check": "eslint --quiet .",
    "prettier": "prettier --write .",
    "prettier:check": "prettier --check .",
    "ts:check": "tsc",
    "ci:check": "npm run lint:check && npm run ts:check && npm run test",
    "husky:enable": "node -e \"try { !process.env.CI && require('husky').install() } catch (e) {if (e.code !== 'MODULE_NOT_FOUND') throw e}\"",
    "husky:disable": "git config --unset core.hooksPath",
    "release": "export $(cat .env | xargs) && semantic-release --no-ci",
    "release:check": "export $(cat .env | xargs) && semantic-release --dry-run"
  },
  "lint-staged": {
    "*.{json,md}": [
      "prettier --write"
    ],
    "*.{js,ts}": [
      "eslint --fix"
    ]
  },
  "jest": {
    "testEnvironment": "node",
    "resetMocks": true,
    "restoreMocks": true,
    "testMatch": [
      "**/?(*.)+(spec|test).[jt]s?(x)"
    ],
    "watchPlugins": [
      "jest-watch-typeahead/filename",
      "jest-watch-typeahead/testname"
    ]
  },
  "dependencies": {
    "got": "^11.8.6",
    "tough-cookie": "^4.1.3"
  },
  "devDependencies": {
    "@babel/core": "^7.22.11",
    "@babel/node": "^7.22.10",
    "@babel/preset-env": "^7.22.10",
    "@babel/preset-typescript": "^7.22.11",
    "@semantic-release/changelog": "^6.0.3",
    "@semantic-release/exec": "^6.0.3",
    "@semantic-release/git": "^10.0.1",
    "@types/jest": "^29.5.4",
    "@types/node": "^20.5.7",
    "@types/tough-cookie": "^4.0.2",
    "@typescript-eslint/eslint-plugin": "^6.4.1",
    "@typescript-eslint/parser": "^6.4.1",
    "conventional-changelog-conventionalcommits": "^7.0.1",
    "eslint": "^8.48.0",
    "eslint-config-prettier": "^9.0.0",
    "eslint-plugin-import": "^2.28.1",
    "eslint-plugin-prettier": "^5.0.0",
    "husky": "^8.0.3",
    "jest": "^29.6.4",
    "jest-watch-typeahead": "^2.2.2",
    "lint-staged": "^14.0.1",
    "prettier": "^3.0.2",
    "semantic-release": "^19.0.0",
    "typescript": "^5.2.2"
  }
}
