-
Notifications
You must be signed in to change notification settings - Fork 205
/
package.json
63 lines (63 loc) · 1.44 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
62
63
{
"name": "aws-kcl",
"description": "Kinesis Client Libray (KCL) in Node.js.",
"version": "3.0.0",
"author": {
"name": "Amazon Web Services",
"url": "http://aws.amazon.com/"
},
"main": "index.js",
"engines": {
"node": ">= 0.8.0"
},
"bin": {
"kcl-bootstrap": "bin/kcl-bootstrap",
"kcl-bootstrap.bat": "bin/kcl-bootstrap.bat"
},
"scripts": {
"build": "grunt build",
"compile": "grunt compile",
"clean": "grunt clean",
"test": "grunt test",
"release": "grunt release",
"doc": "grunt jsdoc"
},
"dependencies": {
"commander": "~12.0.0",
"xml-js": "^1.6.11"
},
"devDependencies": {
"async": "^3.2.2",
"aws-sdk": "^2.390.0",
"chai": "^4.3.4",
"grunt": "^1.0.3",
"grunt-cli": "^1.3.2",
"grunt-contrib-clean": "^2.0.0",
"grunt-contrib-jshint": "^3.1.1",
"grunt-jsdoc": "^2.4.1",
"grunt-mocha-test": "^0.13.3",
"ink-docstrap": "^1.3.2",
"log4js": "^6.3.0",
"mocha": "^10.3.0",
"sinon": "^17.0.1"
},
"homepage": "https://github.com/awslabs/amazon-kinesis-client-nodejs",
"repository": {
"type": "git",
"url": "git://github.com/awslabs/amazon-kinesis-client-nodejs.git"
},
"bugs": {
"url": "https://github.com/awslabs/amazon-kinesis-client-nodejs/issues"
},
"license": "Apache-2.0",
"keywords": [
"api",
"amazon",
"aws",
"big data",
"kinesis",
"kinesis client library",
"kcl",
"node.js"
]
}