forked from lapwinglabs/kev
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
73 lines (73 loc) · 1.91 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
69
70
71
72
73
{
"name": "kev",
"version": "2.6.3",
"description": "Key-Value API with pluggable backends. So simple, even Kevin Malone could use it.",
"main": "src/index.js",
"scripts": {
"test": "jest",
"lint": "eslint src",
"performance": "node benchmarks/performance.js",
"precommit": "npm run lint",
"prepush": "npm run dc:test",
"migrate": "node scripts/migrate.js",
"dc:destroy": "docker-compose $(make dc.files) down -v --remove-orphans",
"dc:test": "docker compose $(make dc.files) build test && docker compose $(make dc.files) run --rm test test --"
},
"keywords": [
"key",
"value",
"key",
"value",
"database",
"storage"
],
"author": "Finbox Inc.",
"license": "MIT",
"devDependencies": {
"aerospike": "5.4.0",
"delay": "5.0.0",
"envvar": "2.0.0",
"eslint": "7.23.0",
"eslint-config-standard": "16.0.3",
"eslint-plugin-import": "2.25.3",
"eslint-plugin-jest": "24.3.4",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "4.3.1",
"eslint-plugin-standard": "5.0.0",
"husky": "4.3.8",
"jest": "26.6.3",
"kev1": "git+https://github.com/finboxio/kev.git#v1.3.2",
"kev2": "git+https://github.com/finboxio/kev.git#v2.4.3",
"uid": "2.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/finboxio/kev"
},
"jest": {
"testEnvironment": "node",
"maxWorkers": 1,
"testPathIgnorePatterns": [
"/node_modules/",
"core.spec.js"
]
},
"dependencies": {
"bytes": "3.1.0",
"dataloader": "2.0.0",
"debug": "4.3.2",
"glob-to-regexp": "0.4.1",
"into-stream": "6.0.0",
"ioredis": "4.28.0",
"lru-cache": "6.0.0",
"mongodb": "4.1.4",
"ms": "2.1.3",
"redis-stream": "0.1.0",
"resurrect-js": "1.0.1",
"stream-to-array": "2.3.0",
"stream-transform": "2.1.3"
},
"peerDependencies": {
"aerospike": ">=5.4.0 || <= 5.12.1"
}
}