-
Notifications
You must be signed in to change notification settings - Fork 55
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.08 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.08 KB
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
{
"name": "node-aws-lambda",
"version": "0.1.9",
"description": "A module help you automate AWS lambda function deployment.",
"scripts": {
"test": "./node_modules/mocha/bin/mocha test/all.js",
"lint": "./node_modules/.bin/eslint **.js",
"flow": "flow; test $? -eq 0 -o $? -eq 2"
},
"repository": {
"type": "git",
"url": "https://github.com/ThoughtWorksStudios/node-aws-lambda"
},
"keywords": [
"aws",
"lambda",
"deploy"
],
"author": "Pengchao Wang",
"license": "MIT",
"bugs": {
"url": "https://github.com/ThoughtWorksStudios/node-aws-lambda/issues"
},
"dependencies": {
"async": "^1.0.0",
"aws-sdk": "2.x.x",
"babel-eslint": "^7.1.1",
"eslint-plugin-flowtype": "^2.25.0",
"fs": "0.0.1-security",
"https-proxy-agent": "^1.0.0",
"loggerpro": "^1.0.2",
"util-extend": "^1.0.3"
},
"devDependencies": {
"chai": "^2.1.1",
"eslint": "^3.10.2",
"eslint-config-airbnb-base": "^10.0.1",
"eslint-plugin-import": "^2.2.0",
"flow-bin": "^0.35.0",
"mocha": "^2.2.1",
"node-uuid": "^1.4.3"
}
}