Merge pull request #938 from svelle/spell-checker-update

update simple-spellchecker for new dict files
This commit is contained in:
Yuya Ochiai
2019-02-28 23:46:44 +09:00
committed by GitHub
2 changed files with 9 additions and 11 deletions

18
src/package-lock.json generated
View File

@@ -171,6 +171,10 @@
"resolved": "https://registry.npmjs.org/cross-unzip/-/cross-unzip-0.0.2.tgz",
"integrity": "sha1-UYO8R6CVWb78+YzEZXlkmZNZNy8="
},
"damerau-levenshtein": {
"version": "git://github.com/cbaatz/damerau-levenshtein.git#8d7440a51ae9dc6912e44385115c7cb1da4e8ebc",
"from": "git://github.com/cbaatz/damerau-levenshtein.git"
},
"debug": {
"version": "4.1.1",
"resolved": "https://registry.npmjs.org/debug/-/debug-4.1.1.tgz",
@@ -633,20 +637,14 @@
"integrity": "sha512-4SJ3dm0WAwWy/NVeioZh5AntkdJoWKxHxcmyP622fOkgHa4z3R0TdBJICINyaSDE6uNwVc8gZr+ZinwZAH4xIA=="
},
"simple-spellchecker": {
"version": "0.9.6",
"resolved": "https://registry.npmjs.org/simple-spellchecker/-/simple-spellchecker-0.9.6.tgz",
"integrity": "sha512-vKHAV/GDxZwVSxZvX19/N/X2cBxKwOknNa7HA++imzwVN7nb2PCzHkDTeWhIGnxGaqLnuy8DTxqX3xeiBZcUZA==",
"version": "0.9.8",
"resolved": "https://registry.npmjs.org/simple-spellchecker/-/simple-spellchecker-0.9.8.tgz",
"integrity": "sha512-RGgpBBn4p65nOhZdBHDt84Remz3QvmoQDppKJX0tYS53SbuUJwm7zG1swT5O770zPvN6wZaZlc8ie/jwlZbeHA==",
"requires": {
"binarysearch": "^0.2.4",
"damerau-levenshtein": "git://github.com/cbaatz/damerau-levenshtein.git#8d7440a51ae9dc6912e44385115c7cb1da4e8ebc",
"damerau-levenshtein": "git://github.com/cbaatz/damerau-levenshtein.git",
"strip-bom": "^2.0.0",
"unzip-stream": "^0.3.0"
},
"dependencies": {
"damerau-levenshtein": {
"version": "git://github.com/cbaatz/damerau-levenshtein.git#8d7440a51ae9dc6912e44385115c7cb1da4e8ebc",
"from": "git://github.com/cbaatz/damerau-levenshtein.git"
}
}
},
"sort-keys": {

View File

@@ -22,7 +22,7 @@
"react-dom": "^16.6.3",
"react-transition-group": "^2.5.0",
"semver": "^5.5.0",
"simple-spellchecker": "^0.9.6",
"simple-spellchecker": "^0.9.8",
"underscore": "^1.9.1",
"yargs": "^3.32.0"
}