├── .editorconfig ├── .gitignore ├── .jshintignore ├── .jshintrc ├── .npmignore ├── .travis.yml ├── LICENSE ├── README.md ├── data ├── download.bat ├── download.sh ├── license.html └── unzip.exe ├── examples ├── antonyms.js ├── causeOf.js ├── domains.js ├── fetchSynset.js ├── holonyms.js ├── hypernyms.js ├── hypernymsTree.js ├── hyponyms.js ├── hyponymsTree.js ├── meronyms.js ├── morphology.js ├── polysemy.js ├── sisterTerms.js ├── synsetExamples.js ├── synsetLemmas.js ├── synsets.js └── word_types.js ├── lib ├── getSubstitutions.js ├── getSynsetString.js ├── index.js ├── index_old.js ├── morphy.js ├── rules_of_detachment.js └── word.js ├── package.json └── test ├── test.js └── test.morphy.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-wordnet-magic/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-wordnet-magic/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-wordnet-magic/HEAD/.jshintignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-wordnet-magic/HEAD/.jshintrc -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-wordnet-magic/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-wordnet-magic/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-wordnet-magic/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-wordnet-magic/HEAD/README.md -------------------------------------------------------------------------------- /data/download.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-wordnet-magic/HEAD/data/download.bat -------------------------------------------------------------------------------- /data/download.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-wordnet-magic/HEAD/data/download.sh -------------------------------------------------------------------------------- /data/license.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-wordnet-magic/HEAD/data/license.html -------------------------------------------------------------------------------- /data/unzip.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-wordnet-magic/HEAD/data/unzip.exe -------------------------------------------------------------------------------- /examples/antonyms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-wordnet-magic/HEAD/examples/antonyms.js -------------------------------------------------------------------------------- /examples/causeOf.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-wordnet-magic/HEAD/examples/causeOf.js -------------------------------------------------------------------------------- /examples/domains.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-wordnet-magic/HEAD/examples/domains.js -------------------------------------------------------------------------------- /examples/fetchSynset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-wordnet-magic/HEAD/examples/fetchSynset.js -------------------------------------------------------------------------------- /examples/holonyms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-wordnet-magic/HEAD/examples/holonyms.js -------------------------------------------------------------------------------- /examples/hypernyms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-wordnet-magic/HEAD/examples/hypernyms.js -------------------------------------------------------------------------------- /examples/hypernymsTree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-wordnet-magic/HEAD/examples/hypernymsTree.js -------------------------------------------------------------------------------- /examples/hyponyms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-wordnet-magic/HEAD/examples/hyponyms.js -------------------------------------------------------------------------------- /examples/hyponymsTree.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-wordnet-magic/HEAD/examples/hyponymsTree.js -------------------------------------------------------------------------------- /examples/meronyms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-wordnet-magic/HEAD/examples/meronyms.js -------------------------------------------------------------------------------- /examples/morphology.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-wordnet-magic/HEAD/examples/morphology.js -------------------------------------------------------------------------------- /examples/polysemy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-wordnet-magic/HEAD/examples/polysemy.js -------------------------------------------------------------------------------- /examples/sisterTerms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-wordnet-magic/HEAD/examples/sisterTerms.js -------------------------------------------------------------------------------- /examples/synsetExamples.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-wordnet-magic/HEAD/examples/synsetExamples.js -------------------------------------------------------------------------------- /examples/synsetLemmas.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-wordnet-magic/HEAD/examples/synsetLemmas.js -------------------------------------------------------------------------------- /examples/synsets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-wordnet-magic/HEAD/examples/synsets.js -------------------------------------------------------------------------------- /examples/word_types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-wordnet-magic/HEAD/examples/word_types.js -------------------------------------------------------------------------------- /lib/getSubstitutions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-wordnet-magic/HEAD/lib/getSubstitutions.js -------------------------------------------------------------------------------- /lib/getSynsetString.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-wordnet-magic/HEAD/lib/getSynsetString.js -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-wordnet-magic/HEAD/lib/index.js -------------------------------------------------------------------------------- /lib/index_old.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-wordnet-magic/HEAD/lib/index_old.js -------------------------------------------------------------------------------- /lib/morphy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-wordnet-magic/HEAD/lib/morphy.js -------------------------------------------------------------------------------- /lib/rules_of_detachment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-wordnet-magic/HEAD/lib/rules_of_detachment.js -------------------------------------------------------------------------------- /lib/word.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-wordnet-magic/HEAD/lib/word.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-wordnet-magic/HEAD/package.json -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-wordnet-magic/HEAD/test/test.js -------------------------------------------------------------------------------- /test/test.morphy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Planeshifter/node-wordnet-magic/HEAD/test/test.morphy.js --------------------------------------------------------------------------------