-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
45 lines (45 loc) · 1.34 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
{
"name": "trigram-similarity",
"version": "1.0.7",
"description": "Determining the similarity of alphanumeric text based on trigram matching",
"main": "./dist/index.js",
"scripts": {
"test": "mocha --require @babel/register",
"build": "babel src --presets @babel/preset-env --plugins @babel/plugin-transform-runtime --out-dir dist --copy-files",
"prepublish": "npm run build"
},
"keywords": [
"trigram",
"trigrams",
"trigram similarity",
"text similarity",
"similarity matching",
"ngram",
"n-grams"
],
"author": "Stephan Georg <[email protected]>",
"license": "MIT",
"repository": "github:StephanGeorg/trigram-similarity",
"bugs": {
"url": "https://github.com/StephanGeorg/trigram-similarity/issues"
},
"homepage": "https://github.com/StephanGeorg/trigram-similarity#readme",
"dependencies": {
"@babel/runtime": "^7.15.4",
"@drorgl/n-gram": "^1.1.2"
},
"devDependencies": {
"@babel/cli": "^7.15.7",
"@babel/core": "^7.15.5",
"@babel/eslint-parser": "^7.15.7",
"@babel/plugin-transform-runtime": "^7.15.0",
"@babel/preset-env": "^7.15.6",
"@babel/preset-stage-2": "^7.8.3",
"@babel/register": "^7.15.3",
"chai": "^4.3.4",
"eslint": "^8.0.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.24.0",
"mocha": "^9.1.1"
}
}