-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
30 lines (30 loc) · 927 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
{
"name": "express-like-lambda-example",
"version": "1.0.0",
"description": "A dead simple Express-like Lambda hello world example",
"main": "index.js",
"scripts": {
"test": "test",
"build": "npm install --production && rm -rf build && mkdir build && zip -r -q -x='*media*' -x='*terraform*' -x=*coverage* -x='*.md' -x='LICENSE' -x='*build*' -x='*.DS_Store*' -x='*.git*' build/express-like-lambda-example.zip . && du -sh build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/cujarrett/express-like-lambda-example.git"
},
"keywords": [
"Lambda",
"AWS",
"Express",
"API",
"REST"
],
"author": "cujarrett",
"license": "MIT",
"bugs": {
"url": "https://github.com/cujarrett/express-like-lambda-example/issues"
},
"homepage": "https://github.com/cujarrett/express-like-lambda-example#readme",
"dependencies": {
"lambda-api": "~0.10.6"
}
}