-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
38 lines (38 loc) · 851 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
{
"name": "spelt",
"version": "0.0.2",
"description": "Fast spellchecker written in javascript",
"main": "./dist/index.js",
"scripts": {
"test": "ts-node test/test && ts-node test/benchmark",
"build": "tsc",
"prepublish": "npm run test && npm run build"
},
"keywords": [
"spellchecker",
"spell",
"check",
"checker"
],
"author": "Alex Corvi",
"license": "MIT",
"devDependencies": {
"@types/node": "^7.0.12",
"buble-loader": "^0.4.1",
"spelt-gb-dict": "^1.0.0"
},
"dependencies": {
"strdistance": "0.0.2"
},
"directories": {
"test": "test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/alexcorvi/spelt.git"
},
"bugs": {
"url": "https://github.com/alexcorvi/spelt/issues"
},
"homepage": "https://github.com/alexcorvi/spelt#readme"
}