forked from elasticio/aws-s3-component
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.71 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.71 KB
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
{
"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": "info@elastic.io",
"url": "http://elastic.io"
},
"engines": {
"node": "24.x"
},
"files": [
"lib"
],
"main": "lib/index.js",
"scripts": {
"posttest": "tsc",
"pretest": "eslint --ext .ts --quiet --fix && find lib spec spec-integration -name \"*.js\" -type f -delete && rm -f verifyCredentials.js",
"test": "LOG_OUTPUT_MODE='short' node --import tsx --test ./spec/*/*test.ts ./spec/*test.ts",
"integration-test": "npm run pretest && node --import tsx --test ./spec-integration/*/*test.ts"
},
"keywords": [
"aws",
"s3",
"ipaas",
"integration",
"elasticio-component"
],
"dependencies": {
"@aws-sdk/client-s3": "3.947.0",
"@aws-sdk/lib-storage": "3.947.0",
"@aws-sdk/s3-request-presigner": "3.947.0",
"@elastic.io/component-commons-library": "4.0.0",
"csv": "5.3.2",
"csv-stringify": "6.5.1",
"elasticio-sailor-nodejs": "2.7.7",
"iconv-lite": "0.5.1",
"lodash": "4.17.21",
"mime-types": "2.1.27",
"q": "1.5.1",
"xml-js": "1.6.11"
},
"devDependencies": {
"@elastic.io/component-logger": "0.0.1",
"@types/node": "24.10.0",
"@typescript-eslint/eslint-plugin": "7.9.0",
"@typescript-eslint/parser": "7.9.0",
"chai": "4.3.8",
"dotenv": "16.4.5",
"eslint": "8.57.0",
"eslint-config-airbnb-base": "15.0.0",
"eslint-plugin-import": "2.29.1",
"nock": "12.0.3",
"tsx": "4.21.0",
"typescript": "5.4.5"
},
"repository": "elasticio/amazon-s3-component",
"license": "Apache-2.0"
}