-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
82 lines (82 loc) · 2.31 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
{
"name": "near-duplicate-docs",
"version": "1.1.13",
"description": "Simple library for finding duplicate and near-duplicate text documents in massive sets/libraries/databases",
"main": "dist/index.js",
"author": "Sashe Vuchkov <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/SasheVuchkov/near-duplicate-docs.git"
},
"bugs": {
"url": "https://github.com/SasheVuchkov/near-duplicate-docs/issues"
},
"tags": [
"near-duplicate",
"documents",
"duplicate documents",
"near-duplicate documents",
"near-duplicate detection"
],
"homepage": "https://buhalbu.com/showroom/near-duplicate-docs",
"scripts": {
"start": "tsc && node dist/index.js",
"build": "tsc",
"test": "tsc && jest --testPathPattern=.spec.",
"test-all": "tsc && jest --testTimeout=10000",
"test-coverage": "tsc && jest --testTimeout=10000 --coverage --collectCoverage=true",
"watch:build": "tsc --watch",
"lint": "eslint . --cache --ext .ts",
"lint:prettier": "prettier "
},
"jest": {
"coverageReporters": [
"lcov",
"html"
],
"coverageDirectory": "../coverage",
"rootDir": "./__tests__"
},
"devDependencies": {
"@babel/core": "^7.16.0",
"@babel/preset-env": "^7.16.4",
"@babel/preset-typescript": "^7.16.0",
"@types/jest": "^27.0.3",
"@types/node": "^16.11.9",
"@types/striptags": "^3.1.1",
"@typescript-eslint/eslint-plugin": "^5.4.0",
"@typescript-eslint/parser": "^5.4.0",
"babel-jest": "^27.3.1",
"eslint": "^8.3.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-import": "^2.25.3",
"eslint-plugin-jest": "^25.3.0",
"eslint-plugin-local": "^1.0.0",
"eslint-plugin-markdown": "^2.2.1",
"eslint-plugin-prettier": "^4.0.0",
"jest": "^27.3.1",
"node-fetch": "^3.1.0",
"pre-commit": "^1.2.2",
"prettier": "^2.5.0",
"typescript": "^4.5.2"
},
"dependencies": {
"jshashes": "^1.0.8"
},
"pre-commit": [
"lint",
"test-all"
],
"keywords": [
"near-duplicate documents",
"duplicate documents",
"near-duplicate pages",
"near-duplicate texts",
"similar pages",
"similar documents",
"near-duplicate detection",
"Jaccard similarity index"
]
}