-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
48 lines (48 loc) · 1.1 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
{
"name": "string-comparisons",
"version": "0.0.20",
"description": "A collection of string comparisons algorithms",
"main": "dist/main.min.js",
"keywords": [
"javascript",
"algorithms",
"distance",
"smith-waterman",
"trigrams",
"levenshtein-distance",
"similarity-measures",
"cosine-similarity",
"string-distance",
"jaccard-similarity",
"jaro-winkler-distance",
"damerau-distance",
"hamming-distance",
"string-comparison",
"sorensen-dice-distance",
"n-gram",
"q-gram",
"optimal-string-alignment"
],
"scripts": {
"test": "jest",
"build": "node ./node_modules/webpack/bin/webpack --config webpack.config.js"
},
"author": "Suman Kunwar",
"license": "MIT",
"devDependencies": {
"@babel/core": "^7.24.3",
"@babel/preset-env": "^7.24.3",
"@babel/register": "^7.23.7",
"babel-loader": "^9.1.3",
"jest": "^29.7.0",
"terser-webpack-plugin": "^5.3.10",
"webpack": "^5.91.0",
"webpack-cli": "^5.1.4"
},
"jest": {
"transform": {
"^.+\\.jsx?$": "babel-jest"
}
},
"dependencies": {}
}