forked from elasticio/aws-lambda-component
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.3 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
{
"name": "aws-lambda-component",
"description": "elastic.io integration component that calls out to AWS Lambda API",
"homepage": "https://elastic.io",
"author": {
"name": "elasticio",
"email": "[email protected]",
"url": "https://elastic.io"
},
"engines": {
"node": "14"
},
"files": [
"lib"
],
"main": "lib/index.js",
"keywords": [
"ipaas",
"elasticio",
"elasticio-component",
"aws",
"lambda"
],
"scripts": {
"pretest": "node_modules/.bin/eslint lib spec verifyCredentials.js --ext .json --ext .js --fix",
"test": "NODE_ENV=test jest spec/*"
},
"dependencies": {
"aws-sdk": "2.117.0",
"debug": "3.1.0",
"elasticio-node": "0.0.9",
"elasticio-sailor-nodejs": "2.6.19",
"jsonata": "1.3.1",
"request-promise": "4.2.6",
"request": "2.88.2"
},
"devDependencies": {
"@elastic.io/component-logger": "0.0.1",
"aws-sdk-mock": "1.7.0",
"eslint": "7.14.0",
"eslint-config-airbnb": "18.2.1",
"eslint-plugin-import": "2.22.1",
"jest": "21.0.0",
"jest-cli": "21.0.0"
},
"eslintConfig": {
"extends": "xo-space",
"env": {
"jest": true,
"node": true
}
},
"repository": "elasticio/aws-lambda-component",
"jest": {
"testEnvironment": "node"
},
"license": "Apache-2.0"
}