forked from architect/dynalite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.14 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
{
"name": "dynalite",
"version": "1.2.0",
"description": "An implementation of Amazon's DynamoDB built on LevelDB",
"main": "index.js",
"bin": "cli.js",
"scripts": {
"build": "for file in ./db/*.pegjs; do pegjs \"$file\"; done",
"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 <michael.hart.au@gmail.com>",
"license": "MIT",
"dependencies": {
"async": "^2.1.4",
"big.js": "^3.1.3",
"buffer-crc32": "^0.2.13",
"lazy": "^1.0.11",
"level-sublevel": "^6.6.1",
"leveldown": "^1.5.1",
"levelup": "^1.3.3",
"lock": "^0.1.3",
"memdown": "^1.2.4",
"minimist": "^1.2.0",
"once": "^1.4.0"
},
"optionalDependencies": {
"leveldown": "^1.4.4"
},
"devDependencies": {
"aws4": "^1.5.0",
"istanbul": "^0.4.5",
"mocha": "^3.2.0",
"pegjs": "^0.10.0",
"should": "^11.1.2"
}
}