{
  "name": "edocu-sdk",
  "version": "1.7.2",
  "engines": {
    "node": ">=14"
  },
  "description": "SDK to interact with eDocu systems",
  "main": "build/main/index.js",
  "typings": "build/main/index.d.ts",
  "module": "build/module/index.js",
  "repository": "https://bitbucket.org/edocu/edocu-sdk",
  "homepage": "https://edocu.com/",
  "license": "GPL-3.0-only",
  "keywords": [],
  "scripts": {
    "build": "yarn build:main && yarn build:module",
    "build:main": "tsc -p ./tsconfig.json",
    "build:module": "tsc -p ./tsconfig.module.json",
    "fix": "run-s fix:*",
    "fix:prettier": "prettier \"src/**/*.ts\" --write",
    "fix:lint": "eslint src --ext .ts --fix",
    "test": "yarn jest",
    "test:lint": "eslint src --ext .ts",
    "test:prettier": "prettier \"src/**/*.ts\" --list-different",
    "check-cli": "run-s test diff-integration-tests check-integration-tests",
    "check-integration-tests": "run-s check-integration-test:*",
    "diff-integration-tests": "mkdir -p diff && rm -rf diff/test && cp -r test diff/test && rm -rf diff/test/test-*/.git && cd diff && git init --quiet && git add -A && git commit --quiet --no-verify --allow-empty -m 'WIP' && echo '\\n\\nCommitted most recent integration test output in the \"diff\" directory. Review the changes with \"cd diff && git diff HEAD\" or your preferred git diff viewer.'",
    "watch:build": "tsc -p tsconfig.json -w",
    "watch:build:module": "tsc -p tsconfig.module.json -w",
    "watch:build:main": "tsc -p tsconfig.json -w",
    "watch:test": "nyc --silent ava --watch",
    "cov": "run-s build test:unit cov:html cov:lcov && open-cli coverage/index.html",
    "cov:html": "nyc report --reporter=html",
    "cov:lcov": "nyc report --reporter=lcov",
    "cov:send": "run-s cov:lcov && codecov",
    "cov:check": "nyc report && nyc check-coverage --lines 100 --functions 100 --branches 100",
    "doc": "run-s doc:html && open-cli build/docs/index.html",
    "doc:html": "typedoc src/ --exclude **/*.spec.ts --tsconfig ./tsconfig.json --out build/docs",
    "doc:json": "typedoc src/ --exclude **/*.spec.ts --tsconfig ./tsconfig.json --json build/docs/typedoc.json",
    "doc:publish": "gh-pages -m \"[ci skip] Updates\" -d build/docs",
    "reset-hard": "git clean -dfx && git reset --hard && yarn",
    "prepare-release": "run-s reset-hard test cov:check doc:html version doc:publish",
    "prepublish": "yarn test",
    "prepublishOnly": "sh ./scripts/prepare.sh"
  },
  "dependencies": {
    "@turf/bbox": "^6.5.0",
    "@turf/distance": "^6.5.0",
    "@turf/helpers": "^6.5.0",
    "@xstate/fsm": "^2.1.0",
    "abab": "^2.0.6",
    "axios": "1.7.9",
    "axios-cache-interceptor": "1.6.2",
    "crypto-js": "^4.2.0",
    "dayjs": "^1.11.13",
    "flatted": "^3.3.1",
    "json-logic-js": "^2.0.2",
    "lodash": "^4.17.21",
    "loglevel": "^1.9.2",
    "mobx": "^6.13.0",
    "paho-mqtt": "^1.1.0",
    "qs": "^6.13.0",
    "rfc6902": "^5.1.1",
    "spark-md5": "^3.0.2",
    "urijs": "^1.19.11",
    "uuid": "^11.0.3"
  },
  "devDependencies": {
    "@ava/typescript": "^1.1.1",
    "@babel/runtime": "^7.22.6",
    "@types/geojson": "^7946.0.16",
    "@istanbuljs/nyc-config-typescript": "^1.0.2",
    "@types/crypto-js": "^4.1.1",
    "@types/jest": "^29.5.3",
    "@types/json-logic-js": "^2.0.2",
    "@types/lodash": "^4.14.196",
    "@types/node": "^18.0",
    "@types/paho-mqtt": "^1.0.10",
    "@types/qs": "^6.9.17",
    "@types/spark-md5": "^3.0.2",
    "@types/urijs": "^1.19.19",
    "@typescript-eslint/eslint-plugin": "^6.3.0",
    "@typescript-eslint/parser": "^6.3.0",
    "ava": "^3.12.1",
    "codecov": "^3.5.0",
    "cz-conventional-changelog": "^3.3.0",
    "eslint": "^7.8.0",
    "eslint-config-prettier": "^6.11.0",
    "eslint-plugin-eslint-comments": "^3.2.0",
    "eslint-plugin-import": "^2.31.0",
    "eslint-plugin-prettier": "^3.3.1",
    "gh-pages": "^3.1.0",
    "jest": "^29.6.2",
    "npm-run-all": "^4.1.5",
    "nyc": "^15.1.0",
    "open-cli": "^6.0.1",
    "patch-package": "^8.0.0",
    "prettier": "^3.0.0",
    "source-map-support": "^0.5.21",
    "standard-version": "^9.0.0",
    "ts-jest": "^29.1.1",
    "ts-node": "^10.9.1",
    "typedoc": "^0.27.6",
    "typescript": "^5.1.6"
  },
  "files": [
    "build/main",
    "build/module",
    "!**/*.spec.*",
    "!**/*.json",
    "CHANGELOG.md",
    "LICENSE",
    "README.md"
  ],
  "config": {
    "commitizen": {
      "path": "cz-conventional-changelog"
    }
  },
  "prettier": {
    "bracketSpacing": true,
    "jsxBracketSameLine": true,
    "singleQuote": true,
    "semi": false,
    "trailingComma": "all"
  },
  "ava": {
    "failFast": true,
    "timeout": "60s",
    "typescript": {
      "rewritePaths": {
        "src/": "build/main/"
      }
    },
    "files": [
      "!build/module/**"
    ]
  },
  "nyc": {
    "lines": 30,
    "functions": 10,
    "branches": 0,
    "extends": "@istanbuljs/nyc-config-typescript",
    "exclude": [
      "**/*.spec.js"
    ]
  },
  "packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e"
}
