forked from hobigo/nextcloud-node-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
96 lines (96 loc) · 2.58 KB
/
package.json
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
96
{
"name": "nextcloud-node-client",
"version": "1.8.1",
"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",
"create-lcov": "./node_modules/.bin/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": {
"@hapi/joi": "^17.1.1",
"debug": "^4.1.0",
"dotenv": "^8.2.0",
"fast-xml-parser": "^3.17.4",
"http-proxy-agent": "^4.0.1",
"joi": "^17.2.1",
"node-fetch": "^2.6.0",
"tslog": "^2.6.2",
"vcap_services": "^0.7.1"
},
"devDependencies": {
"@types/chai": "^4.2.12",
"@types/debug": "^4.1.5",
"@types/http-proxy-agent": "^2.0.2",
"@types/joi": "^14.3.4",
"@types/mocha": "^8.0.0",
"@types/node": "^14.0.27",
"@types/node-fetch": "^2.5.7",
"@typescript-eslint/eslint-plugin": "^4.0.0",
"@typescript-eslint/parser": "^4.2.0",
"chai": "^4.2.0",
"codecov": "^3.7.2",
"eslint": "^7.5.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-jsdoc": "^30.3.0",
"eslint-plugin-prefer-arrow": "^1.2.2",
"eslint-plugin-prettier": "^3.1.4",
"mocha": "^8.1.3",
"mocked-env": "^1.3.2",
"nyc": "^15.1.0",
"prettier": "^2.0.5",
"ts-loader": "^8.0.0",
"ts-node": "^9.0.0",
"typedoc": "^0.19.2",
"typescript": "^4.0.3"
},
"bugs": {
"url": "https://github.com/hobigo/nextcloud-node-client/issues"
},
"homepage": "https://hobigo.github.io/nextcloud-node-client"
}