forked from motdotla/node-lambda-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
34 lines (34 loc) · 1.2 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
{
"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": "mocha --recursive",
"test-watch": "mocha --watch --recursive --watch-extensions js",
"test-path": "mocha",
"test-path-watch": "mocha --watch --watch-extensions js",
"lambda": "./node_modules/.bin/node-lambda run --configFile deploy.env",
"package": "./node_modules/.bin/node-lambda package",
"deploy": "./node_modules/.bin/node-lambda deploy --configFile deploy.env",
"lint": "eslint ."
},
"devDependencies": {
"chai": "^4.1.2",
"eslint": "^4.11.0",
"eslint-config-google": "^0.9.1",
"mocha": "^5.0.5",
"node-lambda": "^0.9.0"
}
}