forked from owncloud/owncloud-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
134 lines (134 loc) · 3.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
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
123
124
125
126
127
128
129
130
131
132
133
134
{
"name": "owncloud-sdk",
"version": "1.0.0-dev",
"description": "ownCloud client library for JavaScript",
"main": "./dist/owncloud.js",
"files": [
"dist"
],
"keywords": [
"owncloud",
"api",
"ownCloud",
"javascript",
"client",
"node",
"nodejs",
"js",
"promise"
],
"repository": {
"type": "git",
"url": "git+https://github.com/owncloud/owncloud-sdk.git"
},
"author": "ownclouders <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/owncloud/owncloud-sdk/issues"
},
"scripts": {
"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": "karma start --single-run --browsers ChromeHeadless",
"test-drone": "karma start --single-run --browsers ChromeHeadlessNoSandbox",
"build:docs": "jsdoc -c jsdoc.conf.json",
"build:system": "webpack"
},
"homepage": "https://owncloud.github.io/owncloud-sdk/",
"devDependencies": {
"@babel/core": "^7.4.4",
"@babel/plugin-proposal-class-properties": "^7.4.4",
"@babel/plugin-syntax-dynamic-import": "^7.2.0",
"@babel/plugin-transform-runtime": "^7.4.4",
"@babel/polyfill": "^7.4.4",
"@babel/preset-env": "^7.4.4",
"@babel/runtime": "^7.4.4",
"@pact-foundation/karma-pact": "^2.3.1",
"@pact-foundation/pact-node": "^10.10.1",
"@pact-foundation/pact-web": "^9.11.1",
"babel-loader": "^8.0.5",
"codecov": "^3.3.0",
"eslint": "^6.0.1",
"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": "^4.1.1",
"eslint-plugin-standard": "^4.0.0",
"git-hooks": "^1.1.10",
"husky": ">=1",
"istanbul-instrumenter-loader": "^3.0.1",
"jasmine": "3.5",
"jasmine-core": "3.5",
"jasmine-data-provider": "^2.2.0",
"jsdoc": "^3.6.1",
"jszip": "^3.2.1",
"karma": "^5.1.1",
"karma-babel-preprocessor": "^8.0.0",
"karma-chrome-launcher": "^3.1.0",
"karma-coverage-istanbul-reporter": "^3.0.3",
"karma-jasmine": "^4.0.1",
"karma-sourcemap-loader": "^0.3.7",
"karma-webpack": "^4.0.2",
"lint-staged": ">=8",
"sinon": "^9.0.2",
"webpack": "^4.30.0",
"webpack-cli": "^3.3.2",
"webpack-node-externals": "^1.7.2"
},
"dependencies": {
"axios": "^0.19.2",
"browser-request": "^0.3.3",
"davclient.js": "https://github.com/owncloud/davclient.js.git",
"promise": "^8.0.3",
"request": "^2.88.0",
"utf8": "^3.0.0",
"uuid": "^8.2.0",
"xhr": "^2.5.0",
"xml-js": "^1.6.11",
"xmldom": "^0.3.0"
},
"babel": {
"presets": [
[
"@babel/preset-env",
{
"targets": {
"browsers": [
"> 1%",
"last 2 versions",
"not Explorer > 0",
"IE 11",
"not ExplorerMobile > 0",
"not BlackBerry > 0",
"not OperaMini all",
"not OperaMobile > 0"
]
}
}
]
]
},
"browserslist": [
"> 1%",
"last 2 versions",
"not Explorer > 0",
"IE 11",
"not ExplorerMobile > 0",
"not BlackBerry > 0",
"not OperaMini all",
"not OperaMobile > 0"
],
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"./node_modules/.bin/eslint --fix",
"git add"
]
}
}