forked from SamVerschueren/aws-lambda-invoke
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 778 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
40
41
42
43
44
45
{
"name": "aws-lambda-invoke",
"version": "3.0.0",
"description": "Invoke AWS Lambda functions with ease",
"license": "MIT",
"repository": "SamVerschueren/aws-lambda-invoke",
"author": "Sam Verschueren",
"main": "index.js",
"scripts": {
"test": "xo && ava"
},
"files": [
"index.js"
],
"keywords": [
"aws",
"lambda",
"invoke",
"async",
"promise",
"promisify",
"version",
"alias"
],
"dependencies": {
"parse-aws-lambda-name": "^1.0.0"
},
"devDependencies": {
"ava": "^3.7.1",
"aws-sdk": "^2.660.0",
"sinon": "^9.0.2",
"xo": "^0.29.1"
},
"peerDependencies": {
"aws-sdk": "^2.660.0"
},
"xo": {
"esnext": true
},
"ava": {
"files": [
"tests/test.js"
]
}
}