-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.25 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.25 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
{
"name": "frankdb",
"version": "1.1.1",
"description": "An extreamly fast RANK() database",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"test": "jest",
"benchmark": "NODE_OPTIONS=\"--max-old-space-size=4096\" jest test/benchmark/main.test.ts",
"build": "tsc",
"prepublishOnly": "npm run build"
},
"files": [
"dist/**/*",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/mulmuri/frank.git"
},
"keywords": [
"db",
"database",
"rank"
],
"author": "mulmuri <[email protected]>",
"license": "MIT",
"homepage": "https://github.com/mulmuri/frank",
"devDependencies": {
"@babel/preset-typescript": "^7.23.0",
"@jest/globals": "^29.7.0",
"@types/dotenv": "^8.2.0",
"@types/jest": "^29.5.7",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2"
},
"dependencies": {
"@types/immutable": "^3.8.7",
"@types/random-js": "^2.0.0",
"async-mutex": "^0.4.0",
"crypto": "^1.0.1",
"dotenv": "^16.3.1",
"immutable": "^5.0.0-beta.4",
"mysql2": "^3.6.2",
"random-js": "^2.1.0",
"ts-pattern": "^5.0.5"
},
"publishConfig": {
"access": "public"
}
}