This repository was archived by the owner on Jul 23, 2025. It is now read-only.
forked from hobigo/nextcloud-node-client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
95 lines (95 loc) · 2.46 KB
/
package.json
File metadata and controls
95 lines (95 loc) · 2.46 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "@paroi/nextcloud-node-client",
"version": "1.8.2",
"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": {
"prepublishOnly": "npm run build-release",
"build-watch": "tsc --watch",
"build": "tsc",
"build-release": "npm run build && npm run typedoc",
"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",
"typedoc": "typedoc --out ./docs/ ./src/client.ts",
"create-lcov": "codecov -t <token>",
"eslint": "npx eslint"
},
"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": "^14.2.0",
"fast-xml-parser": "^4.0.1",
"form-data": "^4.0.0",
"http-proxy-agent": "^5.0.0",
"joi": "^17.2.1",
"node-fetch": "^2.6.7",
"tslog": "^3.3.1",
"vcap_services": "^0.7.1"
},
"devDependencies": {
"@types/chai": "^4.3.0",
"@types/debug": "^4.1.7",
"@types/form-data": "^2.5.0",
"@types/mocha": "^9.1.0",
"@types/node": "^14.18.9",
"@types/node-fetch": "^2.5.12",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"chai": "^4.3.4",
"codecov": "^3.8.3",
"eslint": "^8.7.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-jsdoc": "^37.6.3",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^4.0.0",
"mocha": "^9.2.0",
"mocked-env": "^1.3.5",
"nyc": "^15.1.0",
"prettier": "^2.5.1",
"ts-node": "^10.4.0",
"typedoc": "^0.22.11",
"typescript": "^4.5.5"
},
"bugs": {
"url": "https://github.com/hobigo/nextcloud-node-client/issues"
},
"homepage": "https://hobigo.github.io/nextcloud-node-client"
}