forked from aceakash/string-similarity
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 965 Bytes
/
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
{
"name": "string-similarity",
"version": "4.0.4",
"description": "Finds degree of similarity between strings, based on Dice's Coefficient, which is mostly better than Levenshtein distance.",
"main": "src/index.js",
"scripts": {
"test": "jasmine --config=src/spec/support/jasmine.json",
"build": "rm -rf umd && webpack-cli",
"prepublish": "npm test && npm run build"
},
"repository": {
"type": "git",
"url": "git://github.com/aceakash/string-similarity.git"
},
"keywords": [
"strings",
"similar",
"difference",
"similarity",
"compare",
"comparison",
"degree",
"match",
"matching",
"dice",
"levenshtein"
],
"files": [
"src/index.js",
"umd/string-similarity.min.js"
],
"author": "Akash Kurdekar <[email protected]> (http://untilfalse.com/)",
"license": "ISC",
"devDependencies": {
"jasmine": "^3.6.3",
"webpack": "^5.11.1",
"webpack-cli": "^4.3.1"
}
}