forked from architect/dynalite
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
45 lines (45 loc) · 1.06 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
{
"name": "dynalite",
"version": "3.2.2",
"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": "npx nyc@latest 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.6.3",
"big.js": "^5.2.2",
"buffer-crc32": "^0.2.13",
"lazy": "^1.0.11",
"levelup": "^4.4.0",
"lock": "^1.1.0",
"memdown": "^5.1.0",
"minimist": "^1.2.5",
"once": "^1.4.0",
"subleveldown": "^5.0.1"
},
"optionalDependencies": {
"leveldown": "^5.6.0"
},
"devDependencies": {
"aws4": "^1.11.0",
"mocha": "^6.2.3",
"pegjs": "^0.10.0",
"should": "^13.2.3"
}
}