forked from architect/dynalite
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
68 lines (68 loc) · 1.62 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
58
59
60
61
62
63
64
65
66
67
68
{
"name": "dynalite",
"version": "3.2.2",
"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": {
"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": ">=16"
},
"author": "Michael Hart <[email protected]>",
"license": "Apache-2.0",
"dependencies": {
"async": "^3.2.4",
"big.js": "^6.2.1",
"buffer-crc32": "^0.2.13",
"lazy": "^1.0.11",
"levelup": "^5.1.1",
"lock": "^1.1.0",
"memdown": "^6.1.1",
"minimist": "^1.2.8",
"once": "^1.4.0",
"subleveldown": "^6.0.1"
},
"optionalDependencies": {
"leveldown": "^6.1.1"
},
"devDependencies": {
"@architect/eslint-config": "^2.1.1",
"aws4": "^1.12.0",
"eslint": "^8.48.0",
"mocha": "^10.2.0",
"pegjs": "^0.10.0",
"should": "^13.2.3"
},
"keywords": [
"aws",
"amazon",
"cloud",
"dynamo",
"dynamodb",
"fake",
"leveldb",
"mock",
"serverless",
"test"
],
"eslintConfig": {
"extends": "@architect/eslint-config",
"env": {
"mocha": true
},
"rules": {
"filenames/match-regex": [ "error", "^[a-zA-Z0-9-_.]+$", true ]
}
}
}