-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.2 KB
/
Copy pathpackage.json
File metadata and controls
46 lines (46 loc) · 1.2 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
{
"name": "miray-monorepo",
"version": "0.0.2",
"description": "MIRAY - Memory In-memory Rapid Async Yield - TCP-based key-value store",
"private": true,
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"clean": "rm -rf node_modules packages/*/node_modules",
"clean:data": "rm -rf data packages/*/data",
"build": "lerna run build",
"test": "lerna run test",
"server": "npm run start --workspace=miray-server",
"server:dev": "npm run dev --workspace=miray-server",
"cli": "npm run start --workspace=miray-cli",
"benchmark": "node benchmarks/benchmark.js",
"benchmark:concurrent": "node benchmarks/benchmark-concurrent.js",
"publish": "lerna publish",
"version": "lerna version"
},
"keywords": [
"key-value",
"in-memory",
"storage",
"tcp",
"cache"
],
"author": "Yasar Icli",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/yasaricli/miray.git"
},
"bugs": {
"url": "https://github.com/yasaricli/miray/issues"
},
"homepage": "https://github.com/yasaricli/miray#readme",
"dependencies": {
"msgpackr": "^1.11.2"
},
"devDependencies": {
"lerna": "^9.0.0"
}
}