forked from architect/dynalite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.03 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": "dynalite",
"version": "0.3.7",
"description": "A mock implementation of Amazon's DynamoDB 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/dynalite",
"keywords": [
"dynamodb",
"mock",
"fake",
"test",
"aws",
"dynamo",
"leveldb"
],
"author": "Michael Hart <[email protected]>",
"license": "MIT",
"dependencies": {
"buffer-crc32": "~0.2.1",
"levelup": "~0.18.2",
"memdown": "~0.7.0",
"level-sublevel": "~5.1.1",
"lock": "~0.0.4",
"lazy": "~1.0.11",
"once": "~1.3.0",
"async": "~0.2.9",
"big.js": "~2.4.1",
"minimist": "~0.0.5"
},
"optionalDependencies": {
"leveldown": "~0.10.0"
},
"devDependencies": {
"mocha": "~1.14.0",
"should": "~2.1.0",
"aws4": "~0.2.0",
"istanbul": "~0.1.45"
}
}