-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
75 lines (75 loc) · 2 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
74
75
{
"name": "ram64",
"version": "0.13.2",
"description": "Multi-threaded 64bit memory cache database inspired by redis-like features",
"main": "lib",
"types": "src",
"files": [
"lib",
"src",
"docs",
"package.json",
"README.md",
"LICENSE"
],
"engines": {
"node": ">=16.11.0"
},
"scripts": {
"bench": "cross-env NODE_ENV=production UV_THREADPOOL_SIZE=40 node --max-old-space-size=50000 tools/bench/index.js",
"bench:profile": "cross-env NODE_ENV=production UV_THREADPOOL_SIZE=40 node --max-old-space-size=50000 --prof tools/bench/index.js",
"bench:report": "node --prof-process isolate-00000253D5348C70-34736-v8.log > report.txt",
"build": "npx rimraf ./lib && swc src --out-dir lib",
"limits": "cross-env NODE_ENV=production UV_THREADPOOL_SIZE=100 node --max-old-space-size=200000 tools/limits/index.js",
"prepublish": "npm run build",
"start": "node tools/bench/index.js",
"test": "jest",
"watch": "swc src --out-dir lib -w"
},
"keywords": [
"cache",
"database",
"redis",
"ram",
"ram64",
"ram-cache",
"ram-database",
"memory-cache",
"threads",
"multi-threading"
],
"repository": {
"type": "git",
"url": "git+https://github.com/asilvas/ram64.git"
},
"author": "Aaron Silvas",
"license": "MIT",
"bugs": {
"url": "https://github.com/asilvas/ram64/issues"
},
"homepage": "https://github.com/asilvas/ram64#readme",
"devDependencies": {
"@swc/cli": "^0.1.55",
"@swc/core": "^1.2.136",
"@swc/jest": "^0.2.17",
"@tsconfig/node16": "^1.0.2",
"@types/jest": "^27.4.0",
"@types/node": "^17.0.13",
"chokidar": "^3.5.3",
"cross-env": "^7.0.3",
"jest": "^28.1.0",
"redis": "^4.0.3",
"rimraf": "^3.0.2",
"ts-jest": "^28.0.3",
"ts-node": "^10.5.0",
"typescript": "^4.5.5"
},
"dependencies": {
"farmhash": "^3.2.2",
"p-limit": "^3.1.0",
"tiny-lru": "^8.0.1"
},
"optionalDependencies": {
"@swc/core-linux-x64-gnu": "^1.2.139"
}
}