This repository has been archived by the owner on Jun 5, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 33
/
package.json
122 lines (122 loc) · 3.23 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
{
"name": "owncloud-sdk",
"version": "3.1.0",
"description": "ownCloud client library for JavaScript",
"keywords": [
"owncloud",
"api",
"ownCloud",
"javascript",
"client",
"node",
"nodejs",
"js",
"promise"
],
"homepage": "https://owncloud.github.io/owncloud-sdk/",
"bugs": {
"url": "https://github.com/owncloud/owncloud-sdk/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/owncloud/owncloud-sdk.git"
},
"license": "MIT",
"author": "ownclouders <devops@owncloud.com>",
"main": "./dist/owncloud.js",
"files": [
"dist"
],
"scripts": {
"build:docs": "jsdoc -c jsdoc.conf.json",
"build:system": "webpack",
"build:system:w": "webpack --watch",
"depcheck": "depcheck",
"lint": "eslint tests/**/*.js tests/*.js src/**/*.js src/*.js --color --global requirejs --global require",
"lint-fix": "eslint tests/**/*.js tests/*.js src/**/*.js src/*.js --color --global requirejs --global require --fix",
"test-consumer": "jest --runInBand --testPathIgnorePatterns='provider.*'",
"test-provider": "jest --runInBand providerTest.js",
"test-provider:oc10": "jest --runInBand providerTest.js -t 'oc10 as provider'",
"test-provider:ocis": "jest --runInBand providerTest.js -t 'ocis as provider'"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"browsers": [
"> 1%",
"last 2 versions",
"not Explorer > 0",
"not ExplorerMobile > 0",
"not BlackBerry > 0",
"not OperaMini all",
"not OperaMobile > 0"
]
}
}
]
]
},
"browserslist": [
"> 1%",
"last 2 versions",
"not Explorer > 0",
"not ExplorerMobile > 0",
"not BlackBerry > 0",
"not OperaMini all",
"not OperaMobile > 0"
],
"packageManager": "yarn@3.2.0",
"devDependencies": {
"@babel/core": "^7.18.2",
"@babel/polyfill": "^7.4.4",
"@babel/preset-env": "^7.18.2",
"@pact-foundation/pact": "10.0.0-beta.36",
"axios": "^0.28.0",
"babel-loader": "^8.0.5",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"codecov": "^3.3.0",
"cross-fetch": "^3.0.6",
"depcheck": "^1.4.3",
"eslint": "^7.32.0",
"eslint-config-standard": "^14.1.1",
"eslint-loader": "^4.0.2",
"eslint-plugin-import": "^2.17.2",
"eslint-plugin-jasmine": "^4.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.0.0",
"eslint-plugin-standard": "^4.0.0",
"jasmine-data-provider": "^2.2.0",
"jest": "^26.6.3",
"jsdoc": "^3.6.1",
"promise": "^8.0.3",
"qs": "^6.10.3",
"sync-fetch": "^0.4.1",
"utf8": "^3.0.0",
"uuid": "^8.2.0",
"webdav": "4.10.0",
"webpack": "^4.30.0",
"webpack-cli": "^4.9.2",
"webpack-node-externals": "^1.7.2",
"xml-js": "^1.6.11",
"xml2js": "^0.4.23"
},
"peerDependencies": {
"axios": "^0.27.2",
"cross-fetch": "^3.0.6",
"promise": "^8.1.0",
"qs": "^6.10.3",
"utf8": "^3.0.0",
"uuid": "^8.2.0",
"webdav": "4.10.0",
"xml-js": "^1.6.11"
},
"dependenciesMeta": {
"@pact-foundation/pact": {
"built": true
}
}
}