-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
49 lines (49 loc) · 1.15 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
{
"name": "outlook-component",
"description": "elastic.io integration component for Office 365 Outlook REST API",
"license": "Apache-2.0",
"author": "elastic.io GmbH",
"repository": {
"type": "git",
"url": "git@github.com:elasticio/outlook.git"
},
"engines": {
"node": "18.x"
},
"files": [
"lib"
],
"scripts": {
"pretest": "eslint lib spec verifyCredentials.js --fix",
"test": "mocha spec --recursive",
"integration-test": "mocha spec-integration --recursive --timeout 3000"
},
"main": "lib/index.js",
"keywords": [
"office365",
"outlook",
"rest",
"elasticio",
"elasticio-component"
],
"dependencies": {
"@elastic.io/component-commons-library": "3.1.5",
"axios": "1.4.0",
"elasticio-node": "0.0.9",
"elasticio-sailor-nodejs": "2.7.1",
"lodash": "4.17.21",
"moment": "2.29.4",
"moment-timezone": "0.5.43",
"q": "1.5.1"
},
"devDependencies": {
"chai": "4.3.7",
"dotenv": "16.3.1",
"eslint": "8.44.0",
"eslint-config-airbnb": "19.0.4",
"eslint-plugin-import": "2.27.5",
"mocha": "10.2.0",
"nock": "13.3.1",
"sinon": "15.2.0"
}
}