-
Notifications
You must be signed in to change notification settings - Fork 110
Expand file tree
/
Copy pathpackage.json
More file actions
57 lines (57 loc) · 1.45 KB
/
package.json
File metadata and controls
57 lines (57 loc) · 1.45 KB
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": "4.0.0",
"description": "An implementation of Amazon's DynamoDB built on LevelDB",
"homepage": "https://github.com/architect/dynalite",
"repository": {
"type": "git",
"url": "https://github.com/architect/dynalite"
},
"bugs": "https://github.com/architect/dynalite/issues",
"main": "index.js",
"bin": "cli.js",
"scripts": {
"t": "mocha --require should --timeout 10000 test/listTables.js",
"build": "for file in ./db/*.pegjs; do pegjs \"$file\"; done",
"test": "npm run lint && mocha --require should --reporter spec -t $([ $REMOTE ] && echo 30s || echo 4s)",
"coverage": "npx nyc@latest mocha --require should -t 4s",
"lint": "eslint . --fix"
},
"engines": {
"node": ">=20"
},
"author": "Michael Hart <michael.hart.au@gmail.com>",
"license": "Apache-2.0",
"dependencies": {
"async": "^3.2.4",
"big.js": "^6.2.1",
"buffer-crc32": "^0.2.13",
"lazy": "^1.0.11",
"level": "^10.0.0",
"lock": "^1.1.0",
"memory-level": "^3.0.0",
"minimist": "^1.2.8",
"once": "^1.4.0"
},
"devDependencies": {
"@architect/eslint-config": "^3.0.0",
"aws4": "^1.12.0",
"eslint": "^9.35.0",
"eslint-plugin-filenames": "^1.3.2",
"mocha": "^11.7.2",
"pegjs": "^0.10.0",
"should": "^13.2.3"
},
"keywords": [
"aws",
"amazon",
"cloud",
"dynamo",
"dynamodb",
"fake",
"leveldb",
"mock",
"serverless",
"test"
]
}