-
Notifications
You must be signed in to change notification settings - Fork 45
/
package.json
25 lines (25 loc) · 861 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
{
"name": "node-lambda-template",
"version": "0.0.2",
"description": "The bare minimum for a node.js app running on Amazon Lambda. Uses node-lambda under the hood to locally run and also deploy your node.js Amazon Lambda application.",
"main": "index.js",
"repository": {
"type": "git",
"url": "git://github.com/motdotla/node-lambda-template.git"
},
"author": "motdotla",
"license": "ISC",
"bugs": {
"url": "https://github.com/motdotla/node-lambda-template/issues"
},
"homepage": "https://github.com/motdotla/node-lambda-template",
"scripts": {
"setup": "./node_modules/.bin/node-lambda setup",
"test": "./node_modules/.bin/node-lambda run",
"package": "./node_modules/.bin/node-lambda package",
"deploy": "./node_modules/.bin/node-lambda deploy"
},
"devDependencies": {
"node-lambda": "^0.9.0"
}
}