package.json 704 B

123456789101112131415161718192021222324252627
  1. {
  2. "name": "typo-js",
  3. "version": "1.2.1",
  4. "description": "A Hunspell-style spellchecker.",
  5. "main": "typo.js",
  6. "repository": {
  7. "type": "git",
  8. "url": "git://github.com/cfinke/Typo.js.git"
  9. },
  10. "keywords": [
  11. "spellcheck",
  12. "spellchecker",
  13. "hunspell",
  14. "typo",
  15. "speling"
  16. ],
  17. "author": "Christopher Finke <cfinke@gmail.com> (http://www.chrisfinke.com/)",
  18. "license": "BSD-3-Clause",
  19. "bugs": {
  20. "url": "https://github.com/cfinke/Typo.js/issues"
  21. },
  22. "homepage": "https://github.com/cfinke/Typo.js#readme",
  23. "tonicExample": "var Typo = require('typo-js'); var dictionary = new Typo('en_US'); dictionary.check('mispelled');",
  24. "browser": {
  25. "fs": false
  26. }
  27. }