forked from chook/dynalite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
57 lines (57 loc) · 1.41 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
{
"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 <[email protected]>",
"license": "MIT",
"dependencies": {
"abstract-leveldown": "^3.0.0",
"async": "^2.1.4",
"big.js": "^3.1.3",
"bluebird": "^3.5.1",
"buffer-crc32": "^0.2.13",
"dateformat": "^3.0.2",
"es6-promise": "^4.2.5",
"http-proxy": "^1.17.0",
"inherits": "^2.0.3",
"lazy": "^1.0.11",
"level-sublevel": "^6.6.1",
"levelup": "^2.0.0",
"lock": "^0.1.3",
"memdown": "^1.2.4",
"minimist": "^1.2.0",
"node-stringify": "^0.2.1",
"once": "^1.4.0",
"pad": "^2.0.0",
"trireme": "^0.9.0",
"trireme-jdbc": "^1.0.1",
"winston": "^2.0.0"
},
"optionalDependencies": {
"leveldown": "^1.5.1"
},
"devDependencies": {
"aws4": "^1.5.0",
"istanbul": "^0.4.5",
"mocha": "^3.2.0",
"pegjs": "^0.10.0",
"should": "^11.1.2"
}
}