forked from dwyl/learn-aws-lambda
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 1.19 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
{
"name": "learn-aws-lambda",
"version": "1.0.4",
"description": "How-to Guide for AWS Lambda, DynamoDB, SNS & API Gateway",
"main": "index.js",
"scripts": {
"upload": "./lambda-upload-create.sh",
"test": "./node_modules/lab/bin/lab ./lambda-testing/test/callbacks.test.js -m 0 -c -a code -r lcov -o lcov.info -r console -o stdout",
"ava:test": "ava ./lambda-testing/test/ava.test.js",
"coverage": "./node_modules/lab/bin/lab -r html -o ./test/coverage.html"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dwyl/learn-aws-lambda.git"
},
"keywords": [
"AWS",
"lambda",
"DynamoDB",
"node.js"
],
"author": "Nelson Correia, Jack Carlisle, Nikki Ravi",
"license": "GPL-2.0",
"bugs": {
"url": "https://github.com/dwyl/learn-aws-lambda/issues"
},
"homepage": "https://github.com/dwyl/learn-aws-lambda#readme",
"devDependencies": {
"archiver": "^1.1.0",
"ava": "^0.16.0",
"aws-lambda-mock-context": "^3.0.0",
"aws-lambda-pify": "^3.0.0",
"aws-sdk": "^2.5.6",
"code": "^3.0.2",
"gulp": "^3.9.1",
"gulp-install": "^0.6.0",
"gulp-zip": "^3.2.0",
"lab": "^11.0.1",
"run-sequence": "^1.2.2"
}
}