-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
41 lines (41 loc) · 1020 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
40
41
{
"name": "spelling-variations",
"version": "1.0.6",
"description": "gives you a word's spelling variations with detection whether it's a UK (English, british) or US (American) variations, also gives you the preferred variation.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"test": "mocha test/test",
"build":"tsc",
"prepublish": "mocha test/test && tsc"
},
"author": "Alex Corvi <alex@arrayy.com>",
"license": "MIT",
"keywords": [
"spelling",
"variations",
"uk",
"us",
"american",
"british",
"english",
"spell",
"words",
"guess"
],
"directories": {
"test": "test"
},
"dependencies": {},
"repository": {
"type": "git",
"url": "git+https://github.com/finnlp/spelling-variations.git"
},
"bugs": {
"url": "https://github.com/finnlp/spelling-variations/issues"
},
"homepage": "https://github.com/finnlp/spelling-variations#readme",
"devDependencies": {
"en-inflectors": "^1.0.9"
}
}