forked from motdotla/node-lambda
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
49 lines (49 loc) · 1.02 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
{
"name": "node-lambda",
"version": "0.8.9",
"description": "Command line tool for locally running and remotely deploying your node.js applications to Amazon Lambda.",
"main": "lib/main.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "mocha test/*.js"
},
"bin": {
"node-lambda": "./bin/node-lambda"
},
"repository": {
"type": "git",
"url": "git://github.com/rebelmail/node-lambda.git"
},
"keywords": [
"lambda",
"aws",
"amazon",
"amazon-lambda",
"aws-lambda",
"lambda-node",
"deploy",
"deployment"
],
"readmeFilename": "README.md",
"author": "motdotla",
"license": "BSD-2-Clause",
"devDependencies": {
"chai": "^2.0.0",
"hoek": "^2.11.1",
"lodash": "^3.2.0",
"mocha": "",
"should": ""
},
"dependencies": {
"async": "^0.9.0",
"aws-sdk": "^2.1.24",
"commander": "^2.5.0",
"dotenv": "^0.4.0",
"fs-extra": "^0.30.0",
"node-uuid": "^1.4.2",
"node-zip": "^1.1.0",
"rimraf": "^2.2.8"
}
}