-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.24 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.24 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
{
"name": "simhash-ts",
"version": "0.1.0",
"description": "A TypeScript implementation of Simhash algorithm for near-duplicate detection",
"main": "dist/simhash.js",
"types": "dist/simhash.d.ts",
"files": [
"dist",
"LICENSE",
"README.md"
],
"scripts": {
"build": "node -e \"require('fs').rmSync('dist',{recursive:true,force:true})\" && tsc",
"prepare": "npm run build",
"test": "jest --no-watchman --runInBand",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"benchmark": "npm run build && node benchmark/run-benchmark.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/arkin0x/simhash-ts.git"
},
"keywords": [
"simhash",
"typescript",
"similarity",
"near-duplicate",
"hash"
],
"author": "npub1arkn0xxxll4llgy9qxkrncn3vc4l69s0dz8ef3zadykcwe7ax3dqrrh43w",
"license": "MIT",
"bugs": {
"url": "https://github.com/arkin0x/simhash-ts/issues"
},
"homepage": "https://github.com/arkin0x/simhash-ts#readme",
"dependencies": {
"@noble/hashes": "^1.3.3"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"jest": "^29.7.0",
"jest-console-reporter": "^0.1.0",
"ts-jest": "^29.1.2",
"typescript": "^5.0.0"
}
}