forked from linagora/esn-dav-import-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 949 Bytes
/
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
{
"name": "esn-dav-import-client",
"version": "0.0.1",
"description": "JS library for ESN DAV import client",
"main": "src/index.js",
"scripts": {
"test": "npm run lint && npm run unit-test",
"lint": "eslint src",
"unit-test": "jest"
},
"files": [
"src",
"dist"
],
"keywords": [
"esn",
"dav",
"import"
],
"repository": {
"type": "git",
"url": "https://github.com/OpenPaaS-Suite/esn-dav-import-client"
},
"author": "",
"license": "AGPL-3.0",
"devDependencies": {
"@babel/core": "^7.11.4",
"@babel/preset-env": "^7.11.0",
"eslint": "^7.7.0",
"eslint-config-airbnb-base": "^14.2.0",
"eslint-config-linagora-esn": "github:linagora/eslint-config-linagora-esn#v1.1.0",
"eslint-plugin-import": "^2.22.0",
"eslint-plugin-jest": "^23.20.0",
"jest": "^26.4.2"
},
"dependencies": {
"esn-api-client": "github:openpaas-suite/esn-api-client#main"
}
}