-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1009 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": "gestalt-pattern-matcher",
"version": "0.0.12",
"license": "MIT",
"repository": {
"type": "git",
"url": "git@github.com:saniales/gestalt-pattern-matcher.git"
},
"homepage": "https://github.com/saniales/gestalt-pattern-matcher",
"bugs": {
"url": "https://github.com/saniales/gestalt-pattern-matcher/issues"
},
"author": {
"name": "Alessandro Sanino",
"email": "alessandro@sanino.dev",
"url": "https://alessandro.sanino.dev"
},
"description": "Finds the similarity between strings and represents it as a number",
"keywords": [
"pattern-matching",
"gestalt",
"string-similarity",
"similarity"
],
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"test": "mocha -r ts-node/register '*.test.ts'",
"prepublish": "tsc"
},
"devDependencies": {
"@types/chai": "^4.2.12",
"@types/mocha": "^8.0.3",
"chai": "^4.2.0",
"mocha": "^8.1.3",
"ts-node": "^9.0.0",
"typescript": "^4.0.3"
}
}