forked from mhart/kinesalite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.11 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
{
"name": "kinesalite",
"version": "1.5.1",
"description": "An implementation of Amazon's Kinesis built on LevelDB",
"main": "index.js",
"bin": "cli.js",
"scripts": {
"test": "mocha --require should --reporter spec -t $([ $REMOTE ] && echo 30s || echo 4s)",
"coverage": "istanbul cover ./node_modules/.bin/_mocha -- --require should -t 4s"
},
"repository": "mhart/kinesalite",
"keywords": [
"kinesis",
"mock",
"kinesilite",
"kinesis-mock",
"test",
"event",
"stream",
"streaming",
"processing",
"aws",
"logs",
"logging"
],
"author": "Michael Hart <[email protected]>",
"license": "MIT",
"dependencies": {
"async": "^0.9.0",
"bignumber.js": "^2.0.7",
"lazy": "^1.0.11",
"level-sublevel": "^6.4.6",
"levelup": "^1.0.0-5",
"lock": "^0.1.2",
"memdown": "^1.0.0",
"minimist": "^1.1.1",
"node-uuid": "^1.4.3",
"once": "^1.3.2"
},
"optionalDependencies": {
"leveldown": "^1.0.6"
},
"devDependencies": {
"aws4": "^1.0.1",
"istanbul": "^0.3.14",
"mocha": "^2.2.4",
"should": "^6.0.1"
}
}