├── package.json └── readme.md /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "bugs": "https://github.com/retextjs/retext-sentiment/issues", 3 | "name": "retext-sentiment", 4 | "repository": "retextjs/retext-sentiment", 5 | "version": "6.0.1" 6 | } 7 | -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- 1 | # retext-sentiment 2 | 3 | Deprecated: this package is no longer maintained. 4 | Please use a different way to detect sentiment, such as 5 | with [`words/polarity`][polarity]. 6 | 7 | Legacy [documentation for this package](https://github.com/retextjs/retext-sentiment/tree/5cbb516) 8 | is still available in Git. 9 | 10 | 11 | 12 | [polarity]: https://github.com/words/polarity 13 | --------------------------------------------------------------------------------