nextcloud-node-client
Version:
Nextcloud client API for node.js applications
82 lines (81 loc) • 2.19 kB
JSON
{
"name": "nextcloud-node-client",
"version": "1.1.3",
"description": "Nextcloud client API for node.js 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",
"tag",
"tagging",
"nodejs",
"sharing",
"node"
],
"author": "Holger Gockel",
"license": "Apache-2.0",
"dependencies": {
"debug": "^4.1.0",
"dotenv": "^8.2.0",
"fast-xml-parser": "^3.16.0",
"http-proxy-agent": "^4.0.0",
"node-fetch": "^2.6.0",
"vcap_services": "^0.7.1"
},
"devDependencies": {
"@types/chai": "^4.2.8",
"@types/debug": "^4.1.5",
"@types/http-proxy-agent": "^2.0.2",
"@types/mocha": "^5.2.7",
"@types/node": "^13.7.0",
"@types/node-fetch": "^2.5.4",
"chai": "^4.2.0",
"codecov": "^3.6.4",
"mocha": "^7.0.1",
"mocked-env": "^1.3.2",
"nyc": "^15.0.0",
"ts-loader": "^6.2.1",
"ts-node": "^8.6.1",
"tslint": "^5.20.1",
"typedoc": "^0.16.9",
"typescript": "^3.7.5"
},
"bugs": {
"url": "https://github.com/hobigo/nextcloud-node-client/issues"
},
"homepage": "https://hobigo.github.io/nextcloud-node-client"
}