{
  "name": "efici-nextcloud",
  "version": "0.3.2",
  "description": "Nextcloud client API for node.js",
  "main": "dist/ncClient.js",
  "types": "dist/ncClient.d.ts",
  "scripts": {
    "build-watch": "node ./node_modules/typescript/bin/tsc -w",
    "build": "node ./node_modules/typescript/bin/tsc",
    "build-release": "node ./node_modules/typescript/bin/tsc && typedoc --out ./docs/ ./src/ncClient.ts",
    "test": "mocha -r ts-node/register src/test/*test.ts",
    "cover": "nyc mocha -r ts-node/register src/test/*test.ts",
    "record": "nyc mocha -r ts-node/register src/test/*test.ts --record",
    "documentation": "typedoc --out ./docs/ ./src/ncClient.ts"
  },
  "nyc": {
    "extension": [
      ".ts",
      ".tsx"
    ],
    "exclude": [
      "**/*.d.ts",
      "**/*.js",
      "**/src/test/*.ts"
    ],
    "reporter": [
      "html"
    ],
    "all": true
  },
  "keywords": [
    "nextcloud",
    "api",
    "file",
    "folder",
    "tag",
    "tagging",
    "nodejs",
    "node",
    "cloud foundry"
  ],
  "engines": {
    "npm": "6.4.1"
  },
  "author": "Holger Gockel",
  "license": "Apache-2.0",
  "dependencies": {
    "@types/debug": "0.0.31",
    "@types/node": "^12.12.14",
    "@types/node-fetch": "^2.5.4",
    "debug": "^4.1.0",
    "dotenv": "^6.2.0",
    "fast-xml-parser": "^3.15.0",
    "http-proxy-agent": "^2.1.0",
    "node-fetch": "^2.6.0",
    "npm": "^6.13.2",
    "ts-md5": "^1.2.7",
    "vcap_services": "^0.6.0"
  },
  "devDependencies": {
    "@types/chai": "^4.2.6",
    "@types/debug": "0.0.30",
    "@types/http-proxy-agent": "^2.0.2",
    "@types/mocha": "^5.2.7",
    "chai": "^4.2.0",
    "mocha": "^5.2.0",
    "mocked-env": "^1.3.2",
    "nyc": "^14.1.1",
    "ts-loader": "^4.4.1",
    "ts-node": "^7.0.1",
    "tslint": "^5.20.1",
    "typedoc": "^0.14.1",
    "typescript": "^3.7.3",
    "@types/node": "^8.10.45"
  },
  "bugs": {
    "url": "https://github.com/hobigo/nextcloud-node-client/issues"
  },
  "homepage": "https://github.com/hobigo/nextcloud-node-client"
}