-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 789 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 789 Bytes
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
{
"name": "lambda-stack",
"version": "0.1.10",
"description": "AWS Lambda toolkit for JavaScript and Node.js",
"main": "index.js",
"repository": "https://github.com/joelvh/lambda-stack",
"author": "Joel Van Horn",
"license": "MIT",
"private": false,
"scripts": {
"dist": "npm version patch && npm run build && cp package.json dist/",
"build": "babel src -d dist --verbose",
"version": "git add -A src",
"postversion": "git push && git push --tags"
},
"dependencies": {
"custom-router": "^1.0.4",
"http-errors": "^1.7.3",
"middy": "^0.29.0",
"qs": "^6.9.0",
"statuses": "^1.5.0"
},
"devDependencies": {
"@babel/cli": "^7.5.5",
"@babel/core": "^7.5.5",
"@babel/preset-env": "^7.5.5",
"devolution": "^1.1.2"
}
}