-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.63 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
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "jump-gouache",
"version": "2.1.1",
"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": "[email protected]:bhoudu/jump-gouache.git"
},
"keywords": [
"jump",
"consistent",
"consistent-hashing",
"hash",
"hashing",
"guava",
"sharding",
"distributed",
"murmurhash3",
"fnv1a"
],
"scripts": {
"prebuild": "rimraf lib",
"build": "tsc -p tsconfig.build.json",
"test": "cross-env NODE_ENV?=test TZ=UTC jest --colors --detectOpenHandles --forceExit --no-cache --runInBand",
"lint": "eslint 'src/**/*.ts' --fix-dry-run",
"verify": "yarn verify:mkdir && yarn:verify:clean && yarn verify:json && yarn verify:html",
"verify:mkdir": "mkdir -p reports && yarn verify:json && yarn verify:html",
"verify:clean": "rimraf reports/yarn-audit.json",
"verify:json": "yarn audit --json > reports/yarn-audit.json",
"verify:html": "cat reports/yarn-audit.json | yarn-audit-html --output reports/yarn-audit-report.html",
"release": "semantic-release"
},
"main": "lib/gouache.js",
"types": "lib/gouache.d.ts",
"files": [
"index.js",
"lib",
"README.md",
"LICENSE"
],
"dependencies": {
"bignumber.js": "^9.0.2",
"fnv-plus": "^1.3.1",
"long": "^5.2.0",
"murmurhash3js": "^3.0.1"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/commit-analyzer": "^9.0.2",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^8.0.2",
"@semantic-release/npm": "^9.0.0",
"@semantic-release/release-notes-generator": "^10.0.3",
"@types/jest": "27.4.0",
"@types/node": "^12.12.36",
"@typescript-eslint/eslint-plugin": "^5.10.0",
"@typescript-eslint/parser": "^5.10.0",
"conventional-changelog-conventionalcommits": "^4.6.3",
"cross-env-default": "^5.1.3-1",
"eslint": "^8.7.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.4",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.4.7",
"jest-html-reporter": "^3.4.2",
"jest-sonarcloud-reporter": "^1.0.1",
"prettier": "^2.5.1",
"rimraf": "^3.0.2",
"semantic-release": "^19.0.2",
"ts-jest": "^27.1.3",
"typescript": "^4.5.4",
"yarn-audit-fix": "^9.3.1",
"yarn-audit-html": "^3.0.1"
},
"jestSonar": {
"withRelativePaths": true,
"reportPath": "reports",
"reportFile": "test-report.xml"
}
}