-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathpackage.json
54 lines (54 loc) · 1.47 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
{
"name": "kinesis-console-consumer",
"version": "1.8.1",
"description": "AWS Kinesis stream consumer for the console",
"main": "index.js",
"engines": {
"node": ">12.0"
},
"scripts": {
"start": "node index.js",
"lint": "eslint --ignore-path .gitignore --report-unused-disable-directives .",
"posttest": "npm run lint",
"test": "nyc mocha",
"tdd": "mocha --watch --reporter dot --bail",
"travisci": "nyc report --reporter=lcov && cat ./coverage/lcov.info | coveralls"
},
"bin": {
"kinesis-console-consumer": "./cli.js"
},
"keywords": [
"aws",
"kinesis",
"stream",
"cli"
],
"author": "Chris Chang <c@crccheck.com> (http://crccheck.com/blog)",
"license": "Apache-2.0",
"dependencies": {
"aws-sdk": "^2.274.1",
"commander": "^2.16.0",
"debug": "^3.1.0",
"lodash.get": "^4.4.2",
"update-notifier": "^2.5.0"
},
"devDependencies": {
"eslint": "^6.8.0",
"eslint-config-standard": "^14.1.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"mocha": "^4.1.0",
"nyc": "^15.0.0",
"sinon": "^8.0.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/crccheck/kinesis-console-consumer.git"
},
"bugs": {
"url": "https://github.com/crccheck/kinesis-console-consumer/issues"
},
"homepage": "https://github.com/crccheck/kinesis-console-consumer#readme"
}