UNPKG

nextcloud-node-client

Version:

Nextcloud client API for node.js TypeScript applications

85 lines (84 loc) 2.26 kB
{ "name": "nextcloud-node-client", "version": "1.6.0", "description": "Nextcloud client API for node.js TypeScript applications", "main": "dist/client.js", "types": "dist/client.d.ts", "repository": { "type": "git", "url": "git+https://github.com/hobigo/nextcloud-node-client.git" }, "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/client.ts", "test": "mocha -r ts-node/register src/test/*test.ts", "cover": "nyc mocha -r ts-node/register src/test/*test.ts && nyc report --reporter=text-lcov > coverage.lcov", "record": "nyc mocha -r ts-node/register src/test/*test.ts --record", "documentation": "typedoc --out ./docs/api ./src/client.ts", "create-lcov": "./node_modules/.bin/codecov -t <token>" }, "nyc": { "extension": [ ".ts", ".tsx" ], "exclude": [ "**/*.d.ts", "**/*.js", "**/src/test/*.ts" ], "reporter": [ "html", "lcov" ], "all": true, "report-dir": "./docs/coverage" }, "keywords": [ "nextcloud", "api", "file", "folder", "tagging", "nodejs", "sharing", "typescript", "user management" ], "author": "Holger Gockel", "contributors": [ "Scrounger" ], "license": "Apache-2.0", "dependencies": { "debug": "^4.1.0", "dotenv": "^8.2.0", "fast-xml-parser": "^3.16.0", "http-proxy-agent": "^4.0.1", "node-fetch": "^2.6.0", "vcap_services": "^0.7.1" }, "devDependencies": { "@types/chai": "^4.2.9", "@types/debug": "^4.1.5", "@types/http-proxy-agent": "^2.0.2", "@types/mocha": "^7.0.1", "@types/node": "^14.0.6", "@types/node-fetch": "^2.5.4", "chai": "^4.2.0", "codecov": "^3.6.5", "mocha": "^8.0.1", "mocked-env": "^1.3.2", "nyc": "^15.0.0", "ts-loader": "^8.0.0", "ts-node": "^8.6.2", "tslint": "^6.1.0", "typedoc": "^0.17.7", "typescript": "^3.7.5" }, "bugs": { "url": "https://github.com/hobigo/nextcloud-node-client/issues" }, "homepage": "https://hobigo.github.io/nextcloud-node-client" }