{
  "name": "@zhxlp/webdav",
  "version": "4.11.1",
  "description": "WebDAV client for NodeJS",
  "main": "dist/node/index.js",
  "scripts": {
    "build": "npm run clean && run-p build:node build:web",
    "build:node": "tsc",
    "build:web": "webpack --mode production --config webpack.config.js && tsc --emitDeclarationOnly --outDir dist/web/",
    "clean": "rimraf dist web",
    "dev": "nodemon -e ts,js --exec 'npm run build' --ignore 'dist/' --ignore 'web/'",
    "format": "prettier --write '{source,test}/**/*.{js,ts}'",
    "prepare:publish:web": "cp -r ./dist/web ./web && mv ./web/webdav.js ./web/index.js",
    "prepublishOnly": "run-s build prepare:publish:web",
    "test": "run-s test:node test:web test:format",
    "test:format": "prettier-check '{source,test}/**/*.{js,ts}'",
    "test:node": "npm run build:node && nyc mocha -r test/index.node.js \"test/node/**/*.spec.js\"",
    "test:node:watch": "nodemon --exec 'npm run test:node' --ignore 'dist/'",
    "test:web": "concurrently --success 'first' --kill-others 'npm run test:web:karma' 'npm run test:web:server'",
    "test:web:karma": "karma start test/karma.conf.js",
    "test:web:server": "node test/server.web.js"
  },
  "types": "dist/node/index.d.ts",
  "files": [
    "dist/",
    "web/",
    "test/server/",
    "*.md"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/zhxlp/webdav-client.git"
  },
  "keywords": [
    "webdav",
    "client",
    "remote",
    "sync"
  ],
  "engines": {
    "node": ">=10"
  },
  "lint-staged": {
    "{source,test}/**/*.{js,ts}": [
      "prettier --write"
    ]
  },
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged"
    }
  },
  "author": "Perry Mitchell <perry@perrymitchell.net>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/zhxlp/webdav-client/issues"
  },
  "homepage": "https://github.com/zhxlp/webdav-client#readme",
  "dependencies": {
    "axios": "^0.27.2",
    "base-64": "^1.0.0",
    "byte-length": "^1.0.2",
    "entities": "^4.4.0",
    "fast-xml-parser": "^3.19.0",
    "hot-patcher": "^0.5.0",
    "layerr": "^0.1.2",
    "md5": "^2.3.0",
    "minimatch": "^5.1.0",
    "nested-property": "^4.0.0",
    "path-posix": "^1.0.0",
    "url-join": "^4.0.1",
    "url-parse": "^1.5.10"
  },
  "devDependencies": {
    "@babel/core": "^7.18.10",
    "@babel/preset-env": "^7.18.10",
    "@babel/preset-typescript": "^7.18.6",
    "@types/node": "^18.7.8",
    "@types/url-parse": "^1.4.8",
    "babel-loader": "^8.2.5",
    "babel-plugin-transform-async-to-promises": "^0.8.18",
    "buffer-equals": "^2.0.0",
    "chai": "^4.3.6",
    "chai-as-promised": "^7.1.1",
    "concurrently": "^7.3.0",
    "copy-dir": "^1.3.0",
    "directory-exists": "^2.0.1",
    "exists-file": "^3.0.2",
    "husky": "^4.3.8",
    "karma": "^6.4.0",
    "karma-chai": "^0.1.0",
    "karma-chrome-launcher": "^3.1.1",
    "karma-firefox-launcher": "^2.1.1",
    "karma-mocha": "^2.0.1",
    "karma-sinon": "^1.0.5",
    "karma-spec-reporter": "^0.0.34",
    "karma-webpack": "^5.0.0",
    "lint-staged": "^12.5.0",
    "mkdirp": "^1.0.4",
    "mocha": "^9.2.2",
    "nock": "^13.2.9",
    "nodemon": "^2.0.19",
    "npm-run-all": "^4.1.5",
    "nyc": "^15.1.0",
    "prettier": "^2.7.1",
    "prettier-check": "^2.0.0",
    "rimraf": "^3.0.2",
    "sinon": "^13.0.2",
    "typescript": "^4.7.4",
    "wait-on": "^6.0.1",
    "webdav-server": "^2.6.2",
    "webpack": "^5.74.0",
    "webpack-cli": "^4.10.0"
  }
}