-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.62 KB
/
Copy pathpackage.json
File metadata and controls
68 lines (68 loc) · 1.62 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "jump-gouache",
"version": "3.0.0",
"description": "Port of Guava jump consistent hash function",
"homepage": "https://github.com/bhoudu/jump-gouache",
"bugs": "https://github.com/bhoudu/jump-gouache/issues",
"author": "Benjamin Houdu",
"engines": {
"node": ">= 0.10.0"
},
"license": "BSD-3-Clause",
"repository": {
"type": "git",
"url": "git@github.com:bhoudu/jump-gouache.git"
},
"keywords": [
"jump",
"consistent",
"consistent-hashing",
"hash",
"hashing",
"guava",
"sharding",
"distributed",
"murmurhash3",
"fnv1a"
],
"scripts": {
"prebuild": "rimraf lib",
"clean": "rimraf lib",
"build": "tsc -p tsconfig.build.json",
"test": "cross-env NODE_ENV=test TZ=UTC jest --colors --detectOpenHandles --forceExit --no-cache --runInBand",
"lint": "biome lint ./src",
"lint:fix": "biome lint --write ."
},
"main": "lib/gouache.js",
"types": "lib/gouache.d.ts",
"files": [
"index.js",
"lib",
"README.md",
"LICENSE"
],
"dependencies": {
"bignumber.js": "^9.3.1",
"fnv-plus": "^1.3.1",
"long": "^5.3.2",
"murmurhash3js": "^3.0.1"
},
"devDependencies": {
"@biomejs/biome": "2.3.15",
"@types/jest": "^29.5.14",
"@types/node": "^24.10.1",
"cross-env": "^10.1.0",
"jest": "^29.7.0",
"jest-html-reporter": "^4.3.0",
"jest-sonarcloud-reporter": "^1.0.1",
"js-yaml": "^3.14.2",
"rimraf": "^6.1.2",
"ts-jest": "^29.4.5",
"typescript": "^5.9.3"
},
"jestSonar": {
"withRelativePaths": true,
"reportPath": "reports",
"reportFile": "test-report.xml"
}
}