-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 894 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 894 Bytes
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
{
"name": "aws-lambda-example-project",
"version": "0.1.0",
"description": "Example AWS Lambda application for processing a Kinesis stream of events and aggregating counts to DynamoDB",
"private": "true",
"devDependencies": {
"grunt": "^0.4.5",
"adm-zip": "~0.4.4",
"npm": "^2.10.0"
},
"homepage": "https://github.com/snowplow/aws-lambda-example-project/",
"keywords": [
"kinesis",
"dynamodb"
],
"author": "Alexander Dean <support@snowplowanalytics.com>",
"license": "Apache-2",
"main": "ProcessKinesisRecords.js",
"repository": {
"type": "git",
"url": "https://github.com:snowplow/aws-lambda-example-project.git"
},
"dependencies": {
"async": "^0.9.0",
"lodash": "^3.9.3",
"temporary": "~0.0.8",
"archiver": "~0.14.4",
"mkdirp": "~0.5.0",
"rimraf": "~2.2.8",
"glob": "~4.3.0",
"aws-sdk": "2.1.23"
}
}