forked from CoorpAcademy/kinesis-listener
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.04 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
{
"name": "@coorpacademy/kinesis-listener",
"version": "0.13.0",
"description": "Cli to listen to a kinesis stream",
"main": "index.js",
"scripts": {
"test": "ava",
"cover": "nyc npm run test",
"publish-coverage": "nyc report --reporter=lcov > coverage.lcov && codecov",
"lint": "eslint lib/ test/ *.js *.json --ext .js,.json"
},
"preferGlobal": "true",
"bin": {
"kinesis-listener": "./index.js"
},
"keywords": [
"cli",
"kinesis",
"aws"
],
"author": "Adrien Becchis",
"license": "ISC",
"dependencies": {
"aws-sdk": "^2.100.0",
"bluebird": "^3.5.0",
"chalk": "^2.1.0",
"cli-spinners": "^1.0.0",
"indent-string": "^3.2.0",
"inquirer": "^3.2.2",
"lodash": "^4.17.4",
"log-update": "^2.1.0",
"moment": "^2.18.1",
"ora": "^1.3.0",
"yargs": "^8.0.2"
},
"devDependencies": {
"@coorpacademy/eslint-plugin-coorpacademy": "^8.1.1",
"ava": "^0.22.0",
"codecov": "^2.3.0",
"eslint": "^5.6.0",
"nyc": "^11.1.0",
"strip-ansi": "^4.0.0"
}
}