-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
36 lines (36 loc) · 982 Bytes
/
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
{
"name": "kinesis-fanout",
"version": "1.0.0",
"author": "Alex Casalboni",
"description": "Kinesis Streams fanout with Kinesis Analytics and the Serverless Framework",
"scripts": {
"create": "node ./kinesis-analytics/create.js",
"delete": "node ./kinesis-analytics/delete.js",
"putrecords": "node ./kinesis-analytics/putRecords.js",
"discover": "node ./kinesis-analytics/discover.js",
"toggle": "node ./kinesis-analytics/toggle.js",
"test": "mocha",
"coverage": "istanbul cover _mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/alexcasalboni/kinesis-streams-fan-out-kinesis-analytics"
},
"license": "Apache-2.0",
"keywords": [
"serverless",
"serverless framework",
"aws",
"aws lambda",
"amazon kinesis",
"kinesis streams",
"kinesis analytics"
],
"devDependencies": {
"aws-sdk": "^2.72.0"
},
"dependencies": {
"commander": "^2.9.0",
"js-yaml": "^3.8.4"
}
}