-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
61 lines (61 loc) · 1.56 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
58
59
60
61
{
"name": "kinesis-streams",
"version": "0.12.1",
"description": "Readable and writable streams for AWS Kinesis",
"main": "lib/index.js",
"engines": {
"node": ">=8.2.1"
},
"scripts": {
"start": "node lib/index.js",
"lint": "eslint --report-unused-disable-directives .",
"posttest": "eslint --report-unused-disable-directives .",
"test": "nyc mocha",
"tdd": "mocha --watch --reporter dot --bail",
"changelog": "echo \"$(changelog-maker && cat CHANGELOG.md)\" > CHANGELOG.md",
"pre-push": "npm test"
},
"keywords": [
"aws",
"kinesis",
"stream",
"readable",
"writable",
"kcl",
"kpl",
"consumer",
"producer"
],
"author": "Chris Chang <c@crccheck.com> (http://crccheck.com/blog)",
"license": "Apache-2.0",
"dependencies": {
"debug": "^4.1.0",
"flushwritable": "^1.0.0"
},
"devDependencies": {
"aws-sdk": "^2.358.0",
"captain-git-hook": "^2.0.0",
"eslint": "^5.9.0",
"eslint-config-standard": "^12.0.0",
"eslint-plugin-import": "^2.14.0",
"eslint-plugin-node": "^8.0.0",
"eslint-plugin-promise": "^4.0.1",
"eslint-plugin-standard": "^4.0.0",
"flow-bin": "^0.86.0",
"mocha": "^5.2.0",
"nyc": "^13.1.0",
"sinon": "^7.1.1",
"stream-array": "^1.1.2"
},
"repository": {
"type": "git",
"url": "git+https://github.com/crccheck/kinesis-streams.git"
},
"bugs": {
"url": "https://github.com/crccheck/kinesis-streams/issues"
},
"homepage": "https://github.com/crccheck/kinesis-streams#readme",
"eslintIgnore": [
"flow-typed"
]
}