forked from awslabs/kinesis-aggregation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.49 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
50
51
52
53
54
55
56
57
{
"name": "aws-kinesis-agg",
"description": "Node.js module to simplify working with Amazon Kinesis Records using Protcol Buffers encoding",
"version": "4.1.3",
"homepage": "http://github.com/awslabs/kinesis-aggregation",
"bugs": {
"url": "http://github.com/awslabs/kinesis-aggregation",
"email": "[email protected]"
},
"dependencies": {
"async": "2.6.1",
"protobufjs": "6.9.0",
"minimist": ">=0.2.1"
},
"keywords": [
"amazon",
"kinesis",
"lambda",
"aggregation"
],
"author": {
"name": "Ian Meyers",
"email": "[email protected]"
},
"main": "./index.js",
"files": [
"index.js",
"index.d.ts",
"lib/kpl-deagg.js",
"lib/kpl-agg.js",
"lib/kpl.json",
"lib/common.js",
"LICENSE.txt",
"README.md"
],
"types": "index.d.ts",
"typings": "index.d.ts",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "http://github.com/awslabs/kinesis-aggregation/node"
},
"scripts": {
"test": "export NODE_ENV=test && mocha --recursive --timeout 4000"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.64",
"aws-sdk": "^2.339.0",
"jshint": "^2.11.0",
"mocha": "^8.1.1",
"node-uuid": "^1.4.8",
"should": "^13.2.1",
"should-sinon": "^0.0.6",
"sinon": "^4.2.2",
"typescript": "^3.1.3"
}
}