-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
70 lines (70 loc) · 1.41 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
67
68
69
70
{
"name": "nami-serverless",
"version": "1.0.4",
"description": "Serverless framework to consume webhooks at scale",
"main": "index.js",
"scripts": {
"test": "jest",
"eslint": "./node_modules/.bin/eslint"
},
"repository": {
"type": "git",
"url": "https://github.com/nami-serverless/nami.git"
},
"bin": {
"nami": "./bin/cli.js"
},
"keywords": [
"lambda",
"aws",
"amazon",
"web",
"services",
"api",
"apigateway",
"serverless",
"faas",
"nami",
"webhook",
"event-driven",
"sqs",
"amazon web services",
"serverless framework"
],
"author": "nami-serverless",
"contributors": [
{
"name": "Wendy Kuhn",
"email": "[email protected]"
},
{
"name": "Sachin Chandy",
"email": "[email protected]"
},
{
"name": "Nick Miller",
"email": "[email protected]"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/nami-serverless/nami/issues"
},
"homepage": "https://github.com/nami-serverless/nami#readme",
"dependencies": {
"aws-sdk": "^2.430.0",
"rimraf": "^2.6.3",
"uuid": "^3.3.2"
},
"devDependencies": {
"axios": "^0.18.0",
"eslint": "^5.15.3",
"eslint-config-airbnb": "^17.1.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.16.0",
"jest": "^24.5.0"
},
"engines": {
"node": ">=8.10"
}
}