forked from jfmdev/simple-spellchecker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
38 lines (38 loc) · 891 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": "simple-spellchecker",
"version": "0.9.4",
"description": "A simple spellchecker compatible with Electron",
"main": "index.js",
"scripts": {
"test": "mocha test.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jfmdev/simple-spellchecker.git"
},
"keywords": [
"simple",
"spell",
"checker",
"electron",
"provider",
"spellcheck"
],
"author": "JFMDev",
"license": "MPL-2.0",
"bugs": {
"url": "https://github.com/jfmdev/simple-spellchecker/issues"
},
"homepage": "https://github.com/jfmdev/simple-spellchecker#readme",
"dependencies": {
"binarysearch": "^0.2.4",
"damerau-levenshtein": "git://github.com/cbaatz/damerau-levenshtein.git",
"npm": "^3.8.0",
"strip-bom": "^2.0.0",
"unzip": "^0.1.11"
},
"devDependencies": {
"chai": "^3.5.0",
"mocha": "^3.2.0"
}
}