forked from elasticio/aws-s3-component
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
66 lines (66 loc) · 1.7 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
{
"name": "amazon-s3-component",
"description": "elastic.io integration component that can read and write to AWS S3",
"homepage": "http://elastic.io",
"author": {
"name": "elastic.io GmbH",
"email": "[email protected]",
"url": "http://elastic.io"
},
"engines": {
"node": "16.x"
},
"files": [
"lib"
],
"main": "lib/index.js",
"scripts": {
"pretest": "eslint lib spec spec-integration verifyCredentials.js --fix",
"test": "mocha spec --recursive --timeout 50000",
"integration-test": "mocha spec-integration --recursive --timeout 50000"
},
"keywords": [
"aws",
"s3",
"ipaas",
"integration",
"elasticio-component"
],
"dependencies": {
"@elastic.io/component-commons-library": "3.0.2",
"@elastic.io/oih-standard-library": "2.0.3",
"aws-sdk": "2.1132.0",
"bunyan": "1.8.12",
"co": "4.6.0",
"csv": "5.3.2",
"elasticio-node": "0.0.9",
"elasticio-sailor-nodejs": "2.6.29",
"iconv-lite": "0.5.1",
"lodash": "4.17.21",
"mime-types": "2.1.27",
"q": "1.5.1",
"remove-leading-slash": "1.0.1",
"remove-trailing-slash": "0.1.0",
"request": "2.88.2",
"requestretry": "7.0.0",
"s3-upload-stream": "1.0.7",
"stream": "0.0.2",
"xml-js": "1.6.11",
"xml-parse-from-string": "1.0.1",
"xml2js": "0.4.23"
},
"devDependencies": {
"@elastic.io/component-logger": "0.0.1",
"chai": "4.2.0",
"dotenv": "8.2.0",
"eslint": "8.23.1",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-import": "2.26.0",
"mocha": "10.0.0",
"nock": "12.0.3",
"querystring": "0.2.0",
"sinon": "9.0.2"
},
"repository": "elasticio/amazon-s3-component",
"license": "Apache-2.0"
}