{"_id":"retext","_rev":"112-3324af19030a7cc3f55811aee7b7f38b","name":"retext","time":{"modified":"2023-09-06T12:16:18.163Z","created":"2014-05-23T15:09:54.667Z","0.0.1":"2014-05-23T15:09:54.667Z","0.0.2":"2014-06-03T22:11:39.473Z","0.0.3":"2014-06-04T09:27:38.941Z","0.0.4":"2014-06-05T15:05:58.161Z","0.0.5":"2014-06-07T22:27:44.737Z","0.0.6":"2014-06-08T14:18:40.799Z","0.0.8":"2014-06-11T13:48:56.462Z","0.0.9":"2014-06-13T11:21:15.826Z","0.0.10":"2014-06-15T13:28:12.836Z","0.0.11":"2014-06-16T21:53:23.628Z","0.0.12":"2014-06-19T10:09:04.976Z","0.1.0-rc.1":"2014-07-07T21:02:23.670Z","0.1.0-rc.2":"2014-07-11T20:35:53.647Z","0.1.0-rc.3":"2014-07-12T14:30:13.191Z","0.1.0-rc.4":"2014-07-12T20:46:48.279Z","0.1.0-rc.5":"2014-07-16T20:02:57.413Z","0.1.0-rc.6":"2014-07-22T09:25:18.686Z","0.1.0":"2014-07-24T14:43:46.957Z","0.1.1":"2014-08-20T17:45:25.855Z","0.2.0-rc.1":"2014-09-19T12:23:27.982Z","0.2.0-rc.2":"2014-09-21T12:01:15.618Z","0.2.0-rc.3":"2014-09-27T15:22:17.150Z","0.2.0-rc.4":"2014-10-09T15:12:53.167Z","0.2.0-rc.5":"2014-10-14T09:14:48.283Z","0.2.0":"2014-10-14T15:18:04.334Z","0.2.1":"2014-10-15T11:11:38.132Z","0.3.0-rc.1":"2014-10-21T11:21:38.020Z","0.3.0-rc.2":"2014-10-27T12:32:53.083Z","0.3.0":"2014-10-28T11:42:15.627Z","0.4.0-rc.1":"2014-11-15T22:17:33.258Z","0.4.0-rc.2":"2014-11-19T18:56:14.914Z","0.4.0":"2014-11-20T15:57:51.279Z","0.5.0-rc.1":"2014-12-05T17:16:25.815Z","0.5.0-rc.2":"2014-12-19T19:53:00.475Z","0.5.0":"2015-01-12T14:22:32.403Z","0.5.1":"2015-01-23T08:32:30.887Z","0.6.0":"2015-07-31T12:45:05.892Z","1.0.0-rc.1":"2015-07-31T12:48:22.818Z","1.0.0-rc.2":"2015-07-31T13:17:30.763Z","1.0.0-rc.3":"2015-08-09T19:45:05.895Z","1.0.0-rc.4":"2015-08-25T20:47:33.332Z","1.0.0":"2015-09-16T13:18:29.686Z","2.0.0":"2016-03-02T13:31:40.398Z","3.0.0":"2016-06-22T10:15:18.767Z","4.0.0":"2016-09-07T14:55:16.361Z","5.0.0":"2017-02-23T16:30:40.131Z","6.0.0":"2018-11-06T16:56:56.754Z","6.0.1":"2018-11-17T11:27:05.306Z","6.0.2":"2019-06-05T13:46:57.374Z","7.0.0":"2019-07-01T13:59:33.289Z","7.0.1":"2019-11-09T20:00:32.524Z","8.0.0":"2021-07-16T09:35:23.707Z","8.1.0":"2021-08-27T13:06:16.079Z","9.0.0":"2023-09-06T12:16:17.976Z"},"maintainers":[{"name":"wooorm","email":"tituswormer@gmail.com"}],"dist-tags":{"latest":"9.0.0","next":"1.0.0-rc.4"},"description":"natural language processor powered by plugins part of the unified collective","readme":"# retext\n\n[![Build][build-badge]][build]\n[![Coverage][coverage-badge]][coverage]\n[![Downloads][downloads-badge]][downloads]\n[![Size][size-badge]][size]\n[![Sponsors][sponsors-badge]][collective]\n[![Backers][backers-badge]][collective]\n[![Chat][chat-badge]][chat]\n\n**[unified][]** processor to add support for parsing and serializing\nLatin-script natural language.\n\n## Contents\n\n*   [What is this?](#what-is-this)\n*   [When should I use this?](#when-should-i-use-this)\n*   [Install](#install)\n*   [Use](#use)\n*   [API](#api)\n    *   [`retext()`](#retext-1)\n*   [Syntax tree](#syntax-tree)\n*   [Types](#types)\n*   [Compatibility](#compatibility)\n*   [Contribute](#contribute)\n*   [Sponsor](#sponsor)\n*   [License](#license)\n\n## What is this?\n\nThis package is a [unified][] processor with support for parsing Latin-script\nnatural language as input and serializing it as output by using unified with\n[`retext-latin`][retext-latin] and [`retext-stringify`][retext-stringify].\n\nSee [the monorepo readme][retext] for info on what the retext ecosystem is.\n\n## When should I use this?\n\nYou can use this package when you want to use unified, have Latin-script as\ninput, and as output.\nThis package is a shortcut for\n`unified().use(retextLatin).use(retextStringify)`.\nWhen the input isn’t Latin-script or is English or Dutch (meaning you don’t\nneed `retext-latin`), it’s recommended to use `unified` directly.\n\n## Install\n\nThis package is [ESM only][esm].\nIn Node.js (version 16+), install with [npm][]:\n\n```sh\nnpm install retext\n```\n\nIn Deno with [`esm.sh`][esmsh]:\n\n```js\nimport {retext} from 'https://esm.sh/retext@9'\n```\n\nIn browsers with [`esm.sh`][esmsh]:\n\n```html\n<script type=\"module\">\n  import {retext} from 'https://esm.sh/retext@9?bundle'\n</script>\n```\n\n## Use\n\n```js\nimport {retext} from 'retext'\nimport retextEmoji from 'retext-emoji'\nimport retextProfanities from 'retext-profanities'\nimport {reporter} from 'vfile-reporter'\n\nconst file = await retext()\n  .use(retextEmoji, {convert: 'encode'})\n  .use(retextProfanities)\n  .process('He’s set on beating your butt for sheriff! :cop:')\n\nconsole.log(String(file))\nconsole.error(reporter(file))\n```\n\nYields:\n\n```txt\nHe’s set on beating your butt for sheriff! 👮\n```\n\n```txt\n1:26-1:30 warning Be careful with `butt`, it’s profane in some cases butt retext-profanities\n\n⚠ 1 warning\n```\n\n## API\n\nThis package exports the identifier [`retext`][api-retext].\nThere is no default export.\n\n### `retext()`\n\nCreate a new unified processor that already uses\n[`retext-latin`][retext-latin] and [`retext-stringify`][retext-stringify].\n\nYou can add more plugins with `use`.\nSee [`unified`][unified] for more information.\n\n## Syntax tree\n\nThe syntax tree used in retext is [nlcst][].\n\n## Types\n\nThis package is fully typed with [TypeScript][].\nIt exports no additional types.\n\n## Compatibility\n\nProjects maintained by the unified collective are compatible with maintained\nversions of Node.js.\n\nWhen we cut a new major release, we drop support for unmaintained versions of\nNode.\nThis means we try to keep the current release line, `retext@^9`, compatible\nwith Node.js 16.\n\n## Contribute\n\nSee [`contributing.md`][contributing] in [`retextjs/.github`][health] for ways\nto get started.\nSee [`support.md`][support] for ways to get help.\n\nThis project has a [code of conduct][coc].\nBy interacting with this repository, organization, or community you agree to\nabide by its terms.\n\n## Sponsor\n\nSupport this effort and give back by sponsoring on [OpenCollective][collective]!\n\n<table>\n<tr valign=\"middle\">\n<td width=\"20%\" align=\"center\" rowspan=\"2\" colspan=\"2\">\n  <a href=\"https://vercel.com\">Vercel</a><br><br>\n  <a href=\"https://vercel.com\"><img src=\"https://avatars1.githubusercontent.com/u/14985020?s=256&v=4\" width=\"128\"></a>\n</td>\n<td width=\"20%\" align=\"center\" rowspan=\"2\" colspan=\"2\">\n  <a href=\"https://motif.land\">Motif</a><br><br>\n  <a href=\"https://motif.land\"><img src=\"https://avatars1.githubusercontent.com/u/74457950?s=256&v=4\" width=\"128\"></a>\n</td>\n<td width=\"20%\" align=\"center\" rowspan=\"2\" colspan=\"2\">\n  <a href=\"https://www.hashicorp.com\">HashiCorp</a><br><br>\n  <a href=\"https://www.hashicorp.com\"><img src=\"https://avatars1.githubusercontent.com/u/761456?s=256&v=4\" width=\"128\"></a>\n</td>\n<td width=\"20%\" align=\"center\" rowspan=\"2\" colspan=\"2\">\n  <a href=\"https://www.gitbook.com\">GitBook</a><br><br>\n  <a href=\"https://www.gitbook.com\"><img src=\"https://avatars1.githubusercontent.com/u/7111340?s=256&v=4\" width=\"128\"></a>\n</td>\n<td width=\"20%\" align=\"center\" rowspan=\"2\" colspan=\"2\">\n  <a href=\"https://www.gatsbyjs.org\">Gatsby</a><br><br>\n  <a href=\"https://www.gatsbyjs.org\"><img src=\"https://avatars1.githubusercontent.com/u/12551863?s=256&v=4\" width=\"128\"></a>\n</td>\n</tr>\n<tr valign=\"middle\">\n</tr>\n<tr valign=\"middle\">\n<td width=\"20%\" align=\"center\" rowspan=\"2\" colspan=\"2\">\n  <a href=\"https://www.netlify.com\">Netlify</a><br><br>\n  <!--OC has a sharper image-->\n  <a href=\"https://www.netlify.com\"><img src=\"https://images.opencollective.com/netlify/4087de2/logo/256.png\" width=\"128\"></a>\n</td>\n<td width=\"10%\" align=\"center\">\n  <a href=\"https://www.coinbase.com\">Coinbase</a><br><br>\n  <a href=\"https://www.coinbase.com\"><img src=\"https://avatars1.githubusercontent.com/u/1885080?s=256&v=4\" width=\"64\"></a>\n</td>\n<td width=\"10%\" align=\"center\">\n  <a href=\"https://themeisle.com\">ThemeIsle</a><br><br>\n  <a href=\"https://themeisle.com\"><img src=\"https://avatars1.githubusercontent.com/u/58979018?s=128&v=4\" width=\"64\"></a>\n</td>\n<td width=\"10%\" align=\"center\">\n  <a href=\"https://expo.io\">Expo</a><br><br>\n  <a href=\"https://expo.io\"><img src=\"https://avatars1.githubusercontent.com/u/12504344?s=128&v=4\" width=\"64\"></a>\n</td>\n<td width=\"10%\" align=\"center\">\n  <a href=\"https://boostnote.io\">Boost Note</a><br><br>\n  <a href=\"https://boostnote.io\"><img src=\"https://images.opencollective.com/boosthub/6318083/logo/128.png\" width=\"64\"></a>\n</td>\n<td width=\"10%\" align=\"center\">\n  <a href=\"https://markdown.space\">Markdown Space</a><br><br>\n  <a href=\"https://markdown.space\"><img src=\"https://images.opencollective.com/markdown-space/e1038ed/logo/128.png\" width=\"64\"></a>\n</td>\n<td width=\"10%\" align=\"center\">\n  <a href=\"https://www.holloway.com\">Holloway</a><br><br>\n  <a href=\"https://www.holloway.com\"><img src=\"https://avatars1.githubusercontent.com/u/35904294?s=128&v=4\" width=\"64\"></a>\n</td>\n<td width=\"10%\"></td>\n<td width=\"10%\"></td>\n</tr>\n<tr valign=\"middle\">\n<td width=\"100%\" align=\"center\" colspan=\"8\">\n  <br>\n  <a href=\"https://opencollective.com/unified\"><strong>You?</strong></a>\n  <br><br>\n</td>\n</tr>\n</table>\n\n## License\n\n[MIT][license] © [Titus Wormer][author]\n\n<!-- Definitions -->\n\n[build-badge]: https://github.com/retextjs/retext/workflows/main/badge.svg\n\n[build]: https://github.com/retextjs/retext/actions\n\n[coverage-badge]: https://img.shields.io/codecov/c/github/retextjs/retext.svg\n\n[coverage]: https://codecov.io/github/retextjs/retext\n\n[downloads-badge]: https://img.shields.io/npm/dm/retext.svg\n\n[downloads]: https://www.npmjs.com/package/retext\n\n[size-badge]: https://img.shields.io/bundlejs/size/retext\n\n[size]: https://bundlejs.com/?q=retext\n\n[sponsors-badge]: https://opencollective.com/unified/sponsors/badge.svg\n\n[backers-badge]: https://opencollective.com/unified/backers/badge.svg\n\n[collective]: https://opencollective.com/unified\n\n[chat-badge]: https://img.shields.io/badge/chat-discussions-success.svg\n\n[chat]: https://github.com/retextjs/retext/discussions\n\n[health]: https://github.com/retextjs/.github\n\n[contributing]: https://github.com/retextjs/.github/blob/main/contributing.md\n\n[support]: https://github.com/retextjs/.github/blob/main/support.md\n\n[coc]: https://github.com/retextjs/.github/blob/main/code-of-conduct.md\n\n[license]: https://github.com/retextjs/retext/blob/main/license\n\n[author]: https://wooorm.com\n\n[npm]: https://docs.npmjs.com/cli/install\n\n[esm]: https://gist.github.com/sindresorhus/a39789f98801d908bbc7ff3ecc99d99c\n\n[esmsh]: https://esm.sh\n\n[nlcst]: https://github.com/syntax-tree/nlcst\n\n[retext-latin]: https://github.com/retextjs/retext/tree/main/packages/retext-latin\n\n[retext-stringify]: https://github.com/retextjs/retext/tree/main/packages/retext-stringify\n\n[retext]: https://github.com/retextjs/retext\n\n[typescript]: https://www.typescriptlang.org\n\n[unified]: https://github.com/unifiedjs/unified\n\n[api-retext]: #retext-1\n","versions":{"0.0.2":{"name":"retext","version":"0.0.2","description":"Extensible natural language system for analysing and manipulating natural language","keywords":["natural","language","parser","analyse","manipule","parse-english","textom"],"author":{"name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","dependencies":{"parse-english":"~0.0.8"},"devDependencies":{"complexity-report":"~1.0.3","istanbul":"~0.2.10","jscs":"^1.4.5","jshint":"~2.5.1","mocha":"~1.20.0"},"repository":{"type":"git","url":"https://github.com/wooorm/retext.git"},"scripts":{"test":"make test"},"bugs":{"url":"https://github.com/wooorm/retext/issues"},"homepage":"https://github.com/wooorm/retext","_id":"retext@0.0.2","_shasum":"960911655c9d2420859fcbe4233989830af6e883","_from":".","_npmVersion":"1.4.10","_npmUser":{"name":"wooorm","email":"tituswormer@gmail.com"},"maintainers":[{"name":"wooorm","email":"tituswormer@gmail.com"}],"dist":{"shasum":"960911655c9d2420859fcbe4233989830af6e883","tarball":"https://registry.npmjs.org/retext/-/retext-0.0.2.tgz","integrity":"sha512-2r6DYau2u3RRzDz4anP9DAcIe2N9T3iUdwnxnzq3ISc+k9ajzjA8enhys+R6/lMTpmOhVwzZkNggOGXh9UPVCw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCRLb6TN4iyIy2y1w+FaCh9oN21/08cK96g8mBTT9XxsAIhAMaDGGir0oZuQyXlzP2B2XIT86GnJ5EZJxszQfKfiZNl"}]},"directories":{}},"0.0.3":{"name":"retext","version":"0.0.3","description":"Extensible system for analysing and manipulating natural language","keywords":["natural","language","parser","analyse","manipulate","parse-english","textom"],"author":{"name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","dependencies":{"parse-english":"~0.0.8"},"devDependencies":{"complexity-report":"~1.0.3","istanbul":"~0.2.10","jscs":"^1.4.5","jshint":"~2.5.1","mocha":"~1.20.1"},"repository":{"type":"git","url":"https://github.com/wooorm/retext.git"},"scripts":{"test":"make test"},"bugs":{"url":"https://github.com/wooorm/retext/issues"},"homepage":"https://github.com/wooorm/retext","_id":"retext@0.0.3","_shasum":"7dc018055c67574830f025d6216fc8bd77e044cb","_from":".","_npmVersion":"1.4.10","_npmUser":{"name":"wooorm","email":"tituswormer@gmail.com"},"maintainers":[{"name":"wooorm","email":"tituswormer@gmail.com"}],"dist":{"shasum":"7dc018055c67574830f025d6216fc8bd77e044cb","tarball":"https://registry.npmjs.org/retext/-/retext-0.0.3.tgz","integrity":"sha512-EN4+xn//l5ktV27+o+g3yMYnZ78ZS2PLyo7cnnZ+54ts3NRsL/bFnq/pSMAlh8X4MwyvZWqzrztYJEuZM1Mb3A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCL8pg1rjRNv/MrAM2H9F5a0fb5k5zLGK1Yc6KuOCUe6wIhANPh1Y4bg2lBFgBIHJYB2zj1D9+QPj4zrYAbL61GZ8y0"}]},"directories":{}},"0.0.4":{"name":"retext","version":"0.0.4","description":"Extensible system for analysing and manipulating natural language","keywords":["natural","language","parser","analyse","manipulate","parse-english","textom"],"author":{"name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","dependencies":{"parse-english":"~0.0.9"},"devDependencies":{"complexity-report":"~1.0.3","istanbul":"~0.2.10","jscs":"^1.4.5","jshint":"~2.5.1","mocha":"~1.20.1"},"repository":{"type":"git","url":"https://github.com/wooorm/retext.git"},"scripts":{"test":"make test"},"bugs":{"url":"https://github.com/wooorm/retext/issues"},"homepage":"https://github.com/wooorm/retext","_id":"retext@0.0.4","_shasum":"874fe079659eed3869fd6382045ff7015e665dec","_from":".","_npmVersion":"1.4.10","_npmUser":{"name":"wooorm","email":"tituswormer@gmail.com"},"maintainers":[{"name":"wooorm","email":"tituswormer@gmail.com"}],"dist":{"shasum":"874fe079659eed3869fd6382045ff7015e665dec","tarball":"https://registry.npmjs.org/retext/-/retext-0.0.4.tgz","integrity":"sha512-JDIuQ+oakwfFOMV+u3p6NlGzi9AlUHPuqAvVpxTstu8ZpfUj4Ipjeh1nG8ZzOHbeZlHfJBP0sfridOxhL74FJQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDjdidOlyPLT9dDzaAleGnNq1PVP3Q3q3ivvJv0h8249QIgFtry0f7WRy6ST/BfchapBEVSR9zDtXZbsvLx8NiTCz4="}]},"directories":{}},"0.0.5":{"name":"retext","version":"0.0.5","description":"Extensible system for analysing and manipulating natural language","keywords":["natural","language","parser","analyse","manipulate","parse-english","textom"],"author":{"name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","dependencies":{"parse-english":"~0.0.12"},"devDependencies":{"complexity-report":"~1.0.3","istanbul":"~0.2.10","jscs":"^1.4.5","jshint":"~2.5.1","mocha":"~1.20.1"},"repository":{"type":"git","url":"https://github.com/wooorm/retext.git"},"scripts":{"test":"make test"},"bugs":{"url":"https://github.com/wooorm/retext/issues"},"homepage":"https://github.com/wooorm/retext","_id":"retext@0.0.5","_shasum":"ab3710c38a1884edf40333656971b5bd5d1ef142","_from":".","_npmVersion":"1.4.10","_npmUser":{"name":"wooorm","email":"tituswormer@gmail.com"},"maintainers":[{"name":"wooorm","email":"tituswormer@gmail.com"}],"dist":{"shasum":"ab3710c38a1884edf40333656971b5bd5d1ef142","tarball":"https://registry.npmjs.org/retext/-/retext-0.0.5.tgz","integrity":"sha512-unZ554UiZZ350smfNSG7bPOrWIb0MvqMXUqz/WZwLppL5SLVmFnCqgzSMcfki0Y5dftD+aUMUqgyb1TClwTzSg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQD7PmxU3wXb1+jwK3Up+lhCQtpleyGdWhVLqEpEt2Ol6AIhANF5RIfazwPVSN4MDPVUJFvTZNhRs8kJKjq6Q0Bmewc7"}]},"directories":{}},"0.0.6":{"name":"retext","version":"0.0.6","description":"Extensible system for analysing and manipulating natural language","keywords":["natural","language","parser","analyse","manipulate","parse-english","textom"],"author":{"name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","dependencies":{"parse-english":"~0.0.13"},"devDependencies":{"complexity-report":"~1.0.3","istanbul":"~0.2.10","jscs":"^1.4.5","jshint":"~2.5.1","mocha":"~1.20.1"},"repository":{"type":"git","url":"https://github.com/wooorm/retext.git"},"scripts":{"test":"make test"},"bugs":{"url":"https://github.com/wooorm/retext/issues"},"homepage":"https://github.com/wooorm/retext","_id":"retext@0.0.6","_shasum":"cc17b0ed1c8b4a5d8af85cecc0f5047739b73335","_from":".","_npmVersion":"1.4.10","_npmUser":{"name":"wooorm","email":"tituswormer@gmail.com"},"maintainers":[{"name":"wooorm","email":"tituswormer@gmail.com"}],"dist":{"shasum":"cc17b0ed1c8b4a5d8af85cecc0f5047739b73335","tarball":"https://registry.npmjs.org/retext/-/retext-0.0.6.tgz","integrity":"sha512-SMsmFBKvbBuVB3mI2B3DpvKB3RJlFpi/Lk0actGP93BDtIgcAd1BzEHWyjjVq8WVjfmpt03T8ovOx4A8JniF9Q==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGNrxA6k3GWGgeYtNPoaea5BIgxH7gCFlQ78EiQoJlCJAiEAvY3Sv0Sa5mnOv3r9L5pFuNcc4qCUf79S2tvvKdwE6KE="}]},"directories":{}},"0.0.8":{"name":"retext","version":"0.0.8","description":"Extensible system for analysing and manipulating natural language","keywords":["natural","language","parser","analyse","manipulate","parse-english","textom"],"author":{"name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","dependencies":{"parse-english":"~0.0.17"},"devDependencies":{"complexity-report":"~1.0.3","eslint":"^0.6.2","istanbul":"~0.2.11","jscs":"^1.4.5","mocha":"~1.20.1"},"repository":{"type":"git","url":"https://github.com/wooorm/retext.git"},"scripts":{"test":"_mocha --reporter spec --check-leaks -u exports spec/retext.spec.js","test-travis":"istanbul cover node_modules/.bin/_mocha --report lcovonly -- --reporter spec --check-leaks -u exports spec/retext.spec.js","lint":"eslint index.js --env node --env browser --rule 'quotes: [2, single]' && node_modules/.bin/eslint spec/retext.spec.js --env node --env mocha --rule 'quotes: [2, single]' && node_modules/.bin/jscs index.js spec/retext.spec.js --reporter=inline","coverage":"istanbul cover node_modules/.bin/_mocha -- -- spec spec/retext.spec.js","complexity":"cr -l --maxcyc 20 --format minimal --silent index.js","make":"npm run-script lint && npm run-script complexity && npm run-script coverage"},"testling":{"files":"spec/retext.spec.js","harness":"mocha","browsers":["iexplore/latest","chrome/latest","chrome/canary","firefox/latest","firefox/nightly","opera/latest","opera/next","safari/latest","iphone/latest","android-browser/latest"]},"bugs":{"url":"https://github.com/wooorm/retext/issues"},"homepage":"https://github.com/wooorm/retext","_id":"retext@0.0.8","_shasum":"0d22aa9f39a01802f114d6ba9468c35226d8a464","_from":".","_npmVersion":"1.4.10","_npmUser":{"name":"wooorm","email":"tituswormer@gmail.com"},"maintainers":[{"name":"wooorm","email":"tituswormer@gmail.com"}],"dist":{"shasum":"0d22aa9f39a01802f114d6ba9468c35226d8a464","tarball":"https://registry.npmjs.org/retext/-/retext-0.0.8.tgz","integrity":"sha512-7eCa+6KrdFUR2ecI4NWEhlvEF5awAflZGajBONzrYNqNINfN1TjCkcFuZk7wL7QmUxCuwvPirzZahWQRlwgJWQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQC+ZcKkZgyg58KC8Bpt9ej6nB+Rv9uzG0PDDpK8KDLpVgIgF/umA3R05gzHBkpBfKOjAF97hUkQpTzyU/v56cYkcac="}]},"directories":{}},"0.0.9":{"name":"retext","version":"0.0.9","description":"Extensible system for analysing and manipulating natural language","keywords":["natural","language","parser","analyse","manipulate","parse-english","textom"],"author":{"name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","dependencies":{"parse-english":"~0.0.20"},"devDependencies":{"complexity-report":"~1.0.3","eslint":"^0.6.2","istanbul":"~0.2.11","jscs":"^1.4.5","mocha":"~1.20.1"},"repository":{"type":"git","url":"https://github.com/wooorm/retext.git"},"scripts":{"test":"_mocha --reporter spec --check-leaks -u exports spec/retext.spec.js","test-travis":"istanbul cover node_modules/.bin/_mocha --report lcovonly -- --reporter spec --check-leaks -u exports spec/retext.spec.js","lint":"eslint index.js --env node --env browser --rule 'quotes: [2, single]' && node_modules/.bin/eslint spec/retext.spec.js --env node --env mocha --rule 'quotes: [2, single]' && node_modules/.bin/jscs index.js spec/retext.spec.js --reporter=inline","coverage":"istanbul cover node_modules/.bin/_mocha -- -- spec spec/retext.spec.js","complexity":"cr -l --maxcyc 20 --format minimal --silent index.js","make":"npm run-script lint && npm run-script complexity && npm run-script coverage"},"testling":{"files":"spec/retext.spec.js","harness":"mocha","browsers":["iexplore/latest","chrome/latest","chrome/canary","firefox/latest","firefox/nightly","opera/latest","opera/next","safari/latest","iphone/latest","android-browser/latest"]},"bugs":{"url":"https://github.com/wooorm/retext/issues"},"homepage":"https://github.com/wooorm/retext","_id":"retext@0.0.9","_shasum":"bb2e9e6acc13adc42f2b1c99ed66866e654fb481","_from":".","_npmVersion":"1.4.10","_npmUser":{"name":"wooorm","email":"tituswormer@gmail.com"},"maintainers":[{"name":"wooorm","email":"tituswormer@gmail.com"}],"dist":{"shasum":"bb2e9e6acc13adc42f2b1c99ed66866e654fb481","tarball":"https://registry.npmjs.org/retext/-/retext-0.0.9.tgz","integrity":"sha512-J2MpA4USntlDBIQzwaFFhtWVdELoks3nr1A2xeG0YK2U99A6LlVms7brOusTUCJO0KcKPaS308lsg+hjLoXyGw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGD5De8IkNvkzB3DTmoryJei1gSM5yqD6A6uEIhNJPoVAiEAt4DipzBHcObcuhGNYuP3ex9BKH3Fg/uctU5czSMXKRs="}]},"directories":{}},"0.0.10":{"name":"retext","version":"0.0.10","description":"Extensible system for analysing and manipulating natural language","keywords":["natural","language","parser","analyse","manipulate","parse-english","textom"],"author":{"name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","dependencies":{"parse-english":"~0.0.21"},"devDependencies":{"complexity-report":"~1.0.3","eslint":"^0.6.2","istanbul":"~0.2.11","jscs":"^1.4.5","mocha":"~1.20.1"},"repository":{"type":"git","url":"https://github.com/wooorm/retext.git"},"scripts":{"test":"_mocha --reporter spec --check-leaks -u exports spec/retext.spec.js","test-travis":"istanbul cover node_modules/.bin/_mocha --report lcovonly -- --reporter spec --check-leaks -u exports spec/retext.spec.js","lint":"eslint index.js --env node --env browser --rule 'quotes: [2, single]' && node_modules/.bin/eslint spec/retext.spec.js --env node --env mocha --rule 'quotes: [2, single]' && node_modules/.bin/jscs index.js spec/retext.spec.js --reporter=inline","coverage":"istanbul cover node_modules/.bin/_mocha -- -- spec spec/retext.spec.js","complexity":"cr -l --maxcyc 20 --format minimal --silent index.js","make":"npm run-script lint && npm run-script complexity && npm run-script coverage"},"testling":{"files":"spec/retext.spec.js","harness":"mocha","browsers":["iexplore/latest","chrome/latest","chrome/canary","firefox/latest","firefox/nightly","opera/latest","opera/next","safari/latest","iphone/latest","android-browser/latest"]},"bugs":{"url":"https://github.com/wooorm/retext/issues"},"homepage":"https://github.com/wooorm/retext","_id":"retext@0.0.10","_shasum":"a83010f366a088683aa7168923a013239a230a2a","_from":".","_npmVersion":"1.4.10","_npmUser":{"name":"wooorm","email":"tituswormer@gmail.com"},"maintainers":[{"name":"wooorm","email":"tituswormer@gmail.com"}],"dist":{"shasum":"a83010f366a088683aa7168923a013239a230a2a","tarball":"https://registry.npmjs.org/retext/-/retext-0.0.10.tgz","integrity":"sha512-tEiUqHTxfUTHcZxJFNf0+O5QDfSkbNsvMfnGM0xHw7K3lfuejcPgD9h0GYObKpaV2emuDzV42fCZZYX2V9Lh9w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHuDGy77BpJd9/9jfCVWdjoAzIsXX8pDO9J5pm/8f0DuAiEA1cb0Y9Yr4/L0l0SA2LHpWk2PLFL2DWJ47kN1gtnQKXE="}]},"directories":{}},"0.0.11":{"name":"retext","version":"0.0.11","description":"Extensible system for analysing and manipulating natural language","keywords":["natural","language","parser","analyse","manipulate","parse-english","textom"],"author":{"name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","dependencies":{"parse-english":"~0.0.22"},"devDependencies":{"complexity-report":"~1.0.3","eslint":"^0.6.2","istanbul":"~0.2.11","jscs":"^1.5.1","mocha":"~1.20.1"},"repository":{"type":"git","url":"https://github.com/wooorm/retext.git"},"scripts":{"test":"node_modules/.bin/_mocha --reporter spec --check-leaks -u exports spec/retext.spec.js","test-travis":"node_modules/.bin/istanbul cover node_modules/.bin/_mocha --report lcovonly -- --reporter spec --check-leaks -u exports spec/retext.spec.js","lint":"node_modules/.bin/eslint index.js --env node --env browser --rule 'quotes: [2, single]' && node_modules/.bin/eslint spec/retext.spec.js --env node --env mocha --rule 'quotes: [2, single]' && node_modules/.bin/jscs index.js spec/retext.spec.js --reporter=inline","coverage":"node_modules/.bin/istanbul cover node_modules/.bin/_mocha -- -- spec spec/retext.spec.js","complexity":"node_modules/.bin/cr -l --maxcyc 20 --format minimal --silent index.js","make":"npm run-script lint && npm run-script complexity && npm run-script coverage"},"testling":{"files":"spec/retext.spec.js","harness":"mocha","browsers":["iexplore/latest","chrome/latest","chrome/canary","firefox/latest","firefox/nightly","opera/latest","opera/next","safari/latest","iphone/latest","android-browser/latest"]},"_id":"retext@0.0.11","dist":{"shasum":"d3a0c52d4ecc7f822d82313938bfec3e4c4f8abf","tarball":"https://registry.npmjs.org/retext/-/retext-0.0.11.tgz","integrity":"sha512-sIB66mrrHDkzg7jdR8AZn+bXS626Ynj71bT7zlSbuwDMrGVqHlxB5dur5UT4kYQbFr8tw24OXo5P7Cw4cAY6ZQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIBaLw0qow7JMVo96zr9KB+Ow/uf5EU7sOK1D8kh3CqkmAiAbCSrZj4vqpY+V0fMiFxr56a0DauOsFmXeOLxPW2mx/A=="}]},"_from":".","_npmVersion":"1.2.15","_npmUser":{"name":"wooorm","email":"tituswormer@gmail.com"},"maintainers":[{"name":"wooorm","email":"tituswormer@gmail.com"}],"directories":{}},"0.0.12":{"name":"retext","version":"0.0.12","description":"Extensible system for analysing and manipulating natural language","keywords":["natural","language","parser","analyse","manipulate","parse-english","textom"],"author":{"name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","dependencies":{"parse-english":"~0.0.23"},"devDependencies":{"browserify":"^4.1.11","complexity-report":"~1.0.3","eslint":"^0.6.2","istanbul":"~0.2.11","jscs":"^1.5.3","mocha":"~1.20.1"},"repository":{"type":"git","url":"https://github.com/wooorm/retext.git"},"scripts":{"test":"_mocha --reporter spec --check-leaks -u exports spec/retext.spec.js","test-travis":"istanbul cover node_modules/.bin/_mocha --report lcovonly -- --reporter spec --check-leaks -u exports spec/retext.spec.js","lint":"npm run-script lint-api && npm run-script lint-test && npm run-script lint-style","lint-api":"eslint index.js --env node --env browser --rule 'quotes: [2, single]'","lint-test":"eslint spec/retext.spec.js --env node --env mocha --rule 'quotes: [2, single]'","lint-style":"jscs index.js spec/retext.spec.js --reporter=inline","prepublish":"npm run-script build-browser","build-browser":"browserify spec/retext.spec.js -o spec/browser.spec.js","coverage":"istanbul cover node_modules/.bin/_mocha -- -- spec/retext.spec.js","complexity":"cr -l --maxcyc 20 --format minimal --silent index.js","make":"npm run-script build-browser && npm run-script lint && npm run-script complexity && npm run-script coverage"},"testling":{"files":"spec/retext.spec.js","harness":"mocha","browsers":["iexplore/latest","chrome/latest","chrome/canary","firefox/latest","firefox/nightly","opera/latest","opera/next","safari/latest","iphone/latest","android-browser/latest"]},"bugs":{"url":"https://github.com/wooorm/retext/issues"},"homepage":"https://github.com/wooorm/retext","_id":"retext@0.0.12","_shasum":"cf20535aa70d277e23c5d60a4f09d8fe4a5e20e6","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"wooorm","email":"tituswormer@gmail.com"},"maintainers":[{"name":"wooorm","email":"tituswormer@gmail.com"}],"dist":{"shasum":"cf20535aa70d277e23c5d60a4f09d8fe4a5e20e6","tarball":"https://registry.npmjs.org/retext/-/retext-0.0.12.tgz","integrity":"sha512-pWwPQaFttC+UQl6Zey/qgjO5M4IrNrw1SA9KDVDwSAVakJhIc6AJxICa2KHoNb+NRYC9+OHnRMp00RKy4Wj2sw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDB50yWaLYNBJtTt5cm5+h35BErjyV17BecCsrj5b5+SgIhANQWwAIjCVbNPB4cH7KXj8YUoHaeKMn7QOUq04YK3/Su"}]},"directories":{}},"0.1.0-rc.1":{"name":"retext","version":"0.1.0-rc.1","description":"Extensible system for analysing and manipulating natural language","keywords":["natural","language","parser","analyse","manipulate","parse-english","textom"],"author":{"name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","dependencies":{"parse-latin":"^0.1.0","textom":"^0.1.0"},"devDependencies":{"eslint":"^0.6.2","istanbul":"~0.2.16","jscs":"^1.5.8","matcha":"^0.5.0","mocha":"~1.20.1"},"repository":{"type":"git","url":"https://github.com/wooorm/retext.git"},"scripts":{"test":"_mocha --reporter spec --check-leaks -u exports spec/retext.spec.js","test-travis":"istanbul cover node_modules/.bin/_mocha --report lcovonly -- --reporter spec --check-leaks -u exports spec/retext.spec.js","lint":"npm run-script lint-api && npm run-script lint-test && npm run-script lint-benchmark && npm run-script lint-style","lint-api":"eslint index.js --env node --env browser --rule 'quotes: [2, single]'","lint-test":"eslint spec/retext.spec.js --env node --env mocha --rule 'quotes: [2, single]'","lint-benchmark":"eslint benchmark/index.js --env node --global suite,set,bench --rule 'quotes: [2, single]'","lint-style":"jscs index.js spec/retext.spec.js benchmark/index.js --reporter=inline","install-browser-test":"npm install browserify","build-browser-test":"browserify spec/retext.spec.js -o spec/browser.spec.js","coverage":"istanbul cover node_modules/.bin/_mocha -- -- spec/retext.spec.js","benchmark":"matcha","make":"npm run-script lint && npm run-script coverage"},"testling":{"files":"spec/retext.spec.js","harness":"mocha","browsers":["iexplore/latest","chrome/latest","chrome/canary","firefox/latest","firefox/nightly","opera/latest","opera/next","safari/latest","iphone/latest","android-browser/latest"]},"bugs":{"url":"https://github.com/wooorm/retext/issues"},"homepage":"https://github.com/wooorm/retext","_id":"retext@0.1.0-rc.1","_shasum":"b2f6712a4b41a5f9db96d63a82479445463b1200","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"wooorm","email":"tituswormer@gmail.com"},"maintainers":[{"name":"wooorm","email":"tituswormer@gmail.com"}],"dist":{"shasum":"b2f6712a4b41a5f9db96d63a82479445463b1200","tarball":"https://registry.npmjs.org/retext/-/retext-0.1.0-rc.1.tgz","integrity":"sha512-vCL4pYwOQXfa0arW/680msyN4gptmvPYCH7FXx+eOGwNfC5RYuO0jKAG4u8VYjkTUxI6nAvhiyOpEWUDCMw7lw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIBCQS95pivAcZPvZJAGEsbLzOuzLEFlmsvQ0nHvtaANaAiEA4gK+P0Xh9vXlHirhlYPVUSZvUx7XHh7+mR/J9saWIC8="}]},"directories":{}},"0.1.0-rc.2":{"name":"retext","version":"0.1.0-rc.2","description":"Extensible system for analysing and manipulating natural language","keywords":["natural","language","parser","analyse","manipulate","parse-english","textom"],"author":{"name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","dependencies":{"parse-latin":"^0.1.0-rc.6","textom":"^0.1.0-rc.3"},"devDependencies":{"eslint":"^0.7.4","istanbul":"^0.3.0","jscs":"^1.5.8","matcha":"^0.5.0","mocha":"~1.20.1"},"repository":{"type":"git","url":"https://github.com/wooorm/retext.git"},"scripts":{"test":"_mocha --reporter spec --check-leaks -u exports spec/retext.spec.js","test-travis":"istanbul cover node_modules/.bin/_mocha --report lcovonly -- --reporter spec --check-leaks -u exports spec/retext.spec.js","lint":"npm run-script lint-api && npm run-script lint-test && npm run-script lint-benchmark && npm run-script lint-style","lint-api":"eslint index.js --env node --env browser --rule 'quotes: [2, single]'","lint-test":"eslint spec/retext.spec.js --env node --env mocha --rule 'quotes: [2, single]'","lint-benchmark":"eslint benchmark/index.js --env node --global suite,set,bench --rule 'quotes: [2, single]'","lint-style":"jscs index.js spec/retext.spec.js benchmark/index.js --reporter=inline","install-browser-test":"npm install browserify","build-browser-test":"browserify spec/retext.spec.js -o spec/browser.spec.js","coverage":"istanbul cover node_modules/.bin/_mocha -- -- spec/retext.spec.js","benchmark":"matcha","make":"npm run-script lint && npm run-script coverage"},"testling":{"files":"spec/retext.spec.js","harness":"mocha","browsers":["iexplore/latest","chrome/latest","chrome/canary","firefox/latest","firefox/nightly","opera/latest","opera/next","safari/latest","iphone/latest","android-browser/latest"]},"bugs":{"url":"https://github.com/wooorm/retext/issues"},"homepage":"https://github.com/wooorm/retext","_id":"retext@0.1.0-rc.2","_shasum":"060eefbad883c3e65eb2b8398afd59182f79d874","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"wooorm","email":"tituswormer@gmail.com"},"maintainers":[{"name":"wooorm","email":"tituswormer@gmail.com"}],"dist":{"shasum":"060eefbad883c3e65eb2b8398afd59182f79d874","tarball":"https://registry.npmjs.org/retext/-/retext-0.1.0-rc.2.tgz","integrity":"sha512-4OzB8d2mXpJ29xr2Hb81WLQYr5Id4x7q25eBIgFYc14HV6C1CaJ6hkNz2sRD4hDReu3oemRpA20K1O4tEZc5HA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIHUuYkyEiASP6uV9eVERybjIwPI83BxT8ebN2lj/MMLdAiEA1cbXlE19rN4k5H9hYlIa6jlXyYDQac2ioIa2yyRlFhI="}]},"directories":{}},"0.1.0-rc.3":{"name":"retext","version":"0.1.0-rc.3","description":"Extensible system for analysing and manipulating natural language","keywords":["natural","language","parser","analyse","manipulate","parse-english","textom"],"author":{"name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","dependencies":{"parse-latin":"^0.1.0-rc.6","textom":"^0.1.0-rc.3"},"devDependencies":{"eslint":"^0.7.4","istanbul":"^0.3.0","jscs":"^1.5.8","matcha":"^0.5.0","mocha":"~1.20.1"},"repository":{"type":"git","url":"https://github.com/wooorm/retext.git"},"scripts":{"test":"_mocha --reporter spec --check-leaks -u exports spec/retext.spec.js","test-travis":"istanbul cover node_modules/.bin/_mocha --report lcovonly -- --reporter spec --check-leaks -u exports spec/retext.spec.js","lint":"npm run-script lint-api && npm run-script lint-test && npm run-script lint-benchmark && npm run-script lint-style","lint-api":"eslint index.js --env node --env browser --rule 'quotes: [2, single]'","lint-test":"eslint spec/retext.spec.js --env node --env mocha --rule 'quotes: [2, single]'","lint-benchmark":"eslint benchmark/index.js --env node --global suite,set,bench --rule 'quotes: [2, single]'","lint-style":"jscs index.js spec/retext.spec.js benchmark/index.js --reporter=inline","install-browser-test":"npm install browserify","build-browser-test":"browserify spec/retext.spec.js -o spec/browser.spec.js","coverage":"istanbul cover node_modules/.bin/_mocha -- -- spec/retext.spec.js","benchmark":"matcha","make":"npm run-script lint && npm run-script coverage"},"testling":{"files":"spec/retext.spec.js","harness":"mocha","browsers":["iexplore/latest","chrome/latest","chrome/canary","firefox/latest","firefox/nightly","opera/latest","opera/next","safari/latest","iphone/latest","android-browser/latest"]},"bugs":{"url":"https://github.com/wooorm/retext/issues"},"homepage":"https://github.com/wooorm/retext","_id":"retext@0.1.0-rc.3","_shasum":"ca28d4572a1971bd7da0e4e704f0bb14a566b1be","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"wooorm","email":"tituswormer@gmail.com"},"maintainers":[{"name":"wooorm","email":"tituswormer@gmail.com"}],"dist":{"shasum":"ca28d4572a1971bd7da0e4e704f0bb14a566b1be","tarball":"https://registry.npmjs.org/retext/-/retext-0.1.0-rc.3.tgz","integrity":"sha512-aQuj/iGGSGN5Grjev5QEoLdK5lFxxd05U+Fa8mqQECJOA6b9NaEKrml9MP6JnjEuv6k4UE5mKiIpPOMOiPBaTA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCXhb/QRKoOT98plKvTPgw0QXdKBF3FTwOhq6Oli6OctgIhAKh6wKs5khtlFFO+PBB6Fr8Lm7hqsVf/cofilvdap07W"}]},"directories":{}},"0.1.0-rc.4":{"name":"retext","version":"0.1.0-rc.4","description":"Extensible system for analysing and manipulating natural language","keywords":["natural","language","parser","analyse","manipulate","parse-english","textom"],"author":{"name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","dependencies":{"parse-latin":"^0.1.0-rc.6","textom":"^0.1.0-rc.3"},"devDependencies":{"eslint":"^0.7.4","istanbul":"^0.3.0","jscs":"^1.5.8","matcha":"^0.5.0","mocha":"~1.20.1"},"repository":{"type":"git","url":"https://github.com/wooorm/retext.git"},"scripts":{"test":"_mocha --reporter spec --check-leaks -u exports spec/retext.spec.js","test-travis":"istanbul cover node_modules/.bin/_mocha --report lcovonly -- --reporter spec --check-leaks -u exports spec/retext.spec.js","lint":"npm run-script lint-api && npm run-script lint-test && npm run-script lint-benchmark && npm run-script lint-style","lint-api":"eslint index.js --env node --env browser --rule 'quotes: [2, single]'","lint-test":"eslint spec/retext.spec.js --env node --env mocha --rule 'quotes: [2, single]'","lint-benchmark":"eslint benchmark/index.js --env node --global suite,set,bench --rule 'quotes: [2, single]'","lint-style":"jscs index.js spec/retext.spec.js benchmark/index.js --reporter=inline","install-browser-test":"npm install browserify","build-browser-test":"browserify spec/retext.spec.js -o spec/browser.spec.js","coverage":"istanbul cover node_modules/.bin/_mocha -- -- spec/retext.spec.js","benchmark":"matcha","make":"npm run-script lint && npm run-script coverage"},"testling":{"files":"spec/retext.spec.js","harness":"mocha","browsers":["iexplore/latest","chrome/latest","chrome/canary","firefox/latest","firefox/nightly","opera/latest","opera/next","safari/latest","iphone/latest","android-browser/latest"]},"bugs":{"url":"https://github.com/wooorm/retext/issues"},"homepage":"https://github.com/wooorm/retext","_id":"retext@0.1.0-rc.4","_shasum":"f3c5af7380c1c521356d9ac22622fbe8efece01d","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"wooorm","email":"tituswormer@gmail.com"},"maintainers":[{"name":"wooorm","email":"tituswormer@gmail.com"}],"dist":{"shasum":"f3c5af7380c1c521356d9ac22622fbe8efece01d","tarball":"https://registry.npmjs.org/retext/-/retext-0.1.0-rc.4.tgz","integrity":"sha512-4dH0wPkPWqvrO8208cZydyN/iET6D7ol4fJdfYRDlv+5yqYVxIc4FUh31PxkIfcRKwM00tCQpRLbPFcFNXw8nw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDnFwvuT9NTnBDorhBzDmRGAmPXmisOQfAaF3OOc7lxkAiBQbFdmQN8Be++JujLcTgQDL0kgt+25ebXTZaieXKJoGw=="}]},"directories":{}},"0.1.0-rc.5":{"name":"retext","version":"0.1.0-rc.5","description":"Extensible system for analysing and manipulating natural language","keywords":["natural","language","parser","analyse","manipulate","parse-english","textom"],"author":{"name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","dependencies":{"parse-latin":"^0.1.0-rc.6","textom":"^0.1.0-rc.3"},"devDependencies":{"eslint":"^0.7.4","istanbul":"^0.3.0","jscs":"^1.5.8","matcha":"^0.5.0","mocha":"~1.20.1"},"repository":{"type":"git","url":"https://github.com/wooorm/retext.git"},"scripts":{"test":"_mocha --reporter spec --check-leaks -u exports spec/retext.spec.js","test-travis":"istanbul cover node_modules/.bin/_mocha --report lcovonly -- --reporter spec --check-leaks -u exports spec/retext.spec.js","lint":"npm run-script lint-api && npm run-script lint-test && npm run-script lint-benchmark && npm run-script lint-style","lint-api":"eslint index.js --env node --env browser --rule 'quotes: [2, single]'","lint-test":"eslint spec/retext.spec.js --env node --env mocha --rule 'quotes: [2, single]'","lint-benchmark":"eslint benchmark/index.js --env node --global suite,set,bench --rule 'quotes: [2, single]'","lint-style":"jscs index.js spec/retext.spec.js benchmark/index.js --reporter=inline","install-browser-test":"npm install browserify","build-browser-test":"browserify spec/retext.spec.js -o spec/browser.spec.js","coverage":"istanbul cover node_modules/.bin/_mocha -- -- spec/retext.spec.js","benchmark":"matcha","make":"npm run-script lint && npm run-script coverage"},"testling":{"files":"spec/retext.spec.js","harness":"mocha","browsers":["iexplore/latest","chrome/latest","chrome/canary","firefox/latest","firefox/nightly","opera/latest","opera/next","safari/latest","iphone/latest","android-browser/latest"]},"bugs":{"url":"https://github.com/wooorm/retext/issues"},"homepage":"https://github.com/wooorm/retext","_id":"retext@0.1.0-rc.5","_shasum":"6926ff98cf1803a5522cbb9f6f06e6731658d888","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"wooorm","email":"tituswormer@gmail.com"},"maintainers":[{"name":"wooorm","email":"tituswormer@gmail.com"}],"dist":{"shasum":"6926ff98cf1803a5522cbb9f6f06e6731658d888","tarball":"https://registry.npmjs.org/retext/-/retext-0.1.0-rc.5.tgz","integrity":"sha512-dNYSbuStWIP/Oau9Yp/+dJrSJ2k44WiXYCp6ZkBCMqZVXdNKzJiUldrF+Drb26+qW6Hw6ZJzkYnrLMUSPCy64g==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIEX9Y8mFqxdqVjBZYtjHiwgy1vDd+GBinKcCqg/ZZ/HbAiEAnANnWPAHEYx1frx5mD0eWiYWmvLbCBNg98ayMlZDll8="}]},"directories":{}},"0.1.0-rc.6":{"name":"retext","version":"0.1.0-rc.6","description":"Extensible system for analysing and manipulating natural language","keywords":["natural","language","parser","analyse","manipulate","parse-english","textom"],"author":{"name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","dependencies":{"parse-latin":"^0.1.0-rc.6","textom":"^0.1.0-rc.3"},"devDependencies":{"eslint":"^0.7.4","istanbul":"^0.3.0","jscs":"^1.5.8","matcha":"^0.5.0","mocha":"~1.20.1"},"repository":{"type":"git","url":"https://github.com/wooorm/retext.git"},"scripts":{"test":"_mocha --reporter spec --check-leaks -u exports spec/retext.spec.js","test-travis":"istanbul cover node_modules/.bin/_mocha --report lcovonly -- --reporter spec --check-leaks -u exports spec/retext.spec.js","lint":"npm run-script lint-api && npm run-script lint-test && npm run-script lint-benchmark && npm run-script lint-style","lint-api":"eslint index.js --env node --env browser --rule 'quotes: [2, single]'","lint-test":"eslint spec/retext.spec.js --env node --env mocha --rule 'quotes: [2, single]'","lint-benchmark":"eslint benchmark/index.js --env node --global suite,set,bench --rule 'quotes: [2, single]'","lint-style":"jscs index.js spec/retext.spec.js benchmark/index.js --reporter=inline","install-browser-test":"npm install browserify","build-browser-test":"browserify spec/retext.spec.js -o spec/browser.spec.js","coverage":"istanbul cover node_modules/.bin/_mocha -- -- spec/retext.spec.js","benchmark":"matcha","make":"npm run-script lint && npm run-script coverage"},"testling":{"files":"spec/retext.spec.js","harness":"mocha","browsers":["iexplore/latest","chrome/latest","chrome/canary","firefox/latest","firefox/nightly","opera/latest","opera/next","safari/latest","iphone/latest","android-browser/latest"]},"bugs":{"url":"https://github.com/wooorm/retext/issues"},"homepage":"https://github.com/wooorm/retext","_id":"retext@0.1.0-rc.6","_shasum":"61c446d25135cd47827057e0cf94242040d01559","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"wooorm","email":"tituswormer@gmail.com"},"maintainers":[{"name":"wooorm","email":"tituswormer@gmail.com"}],"dist":{"shasum":"61c446d25135cd47827057e0cf94242040d01559","tarball":"https://registry.npmjs.org/retext/-/retext-0.1.0-rc.6.tgz","integrity":"sha512-s5CKkHIdgv3Yiu7sebwxuy8oP49BAm2ifJLDd0T4SMZGB/D10sLOJJizhmYo6GWglymlJO3yYkPx7e9lmrqZZA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCBZT2o1ymmWKt66OYSZqTcBrVZuklZ4FTM7msBmlABowIgMVOVj7eGJlPjtUZNyyQrsMbB5dVbDeitsLQrNSrFehg="}]},"directories":{}},"0.1.0":{"name":"retext","version":"0.1.0","description":"Extensible system for analysing and manipulating natural language","keywords":["natural","language","parser","analyse","manipulate","parse-english","textom"],"author":{"name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","dependencies":{"parse-latin":"^0.1.0-rc.6","textom":"^0.1.0-rc.3"},"devDependencies":{"eslint":"^0.7.4","istanbul":"^0.3.0","jscs":"^1.5.8","matcha":"^0.5.0","mocha":"^1.21.0"},"repository":{"type":"git","url":"https://github.com/wooorm/retext.git"},"scripts":{"test":"_mocha --reporter spec --check-leaks -u exports spec/retext.spec.js","test-travis":"istanbul cover node_modules/.bin/_mocha --report lcovonly -- --reporter spec --check-leaks -u exports spec/retext.spec.js","lint":"npm run-script lint-api && npm run-script lint-test && npm run-script lint-benchmark && npm run-script lint-style","lint-api":"eslint index.js --env node --env browser --rule 'quotes: [2, single]'","lint-test":"eslint spec/retext.spec.js --env node --env mocha --rule 'quotes: [2, single]'","lint-benchmark":"eslint benchmark/index.js --env node --global suite,set,bench --rule 'quotes: [2, single]'","lint-style":"jscs index.js spec/retext.spec.js benchmark/index.js --reporter=inline","install-browser-test":"npm install browserify","build-browser-test":"browserify spec/retext.spec.js -o spec/browser.spec.js","coverage":"istanbul cover node_modules/.bin/_mocha -- -- spec/retext.spec.js","benchmark":"matcha","make":"npm run-script lint && npm run-script coverage"},"testling":{"files":"spec/retext.spec.js","harness":"mocha","browsers":["iexplore/latest","chrome/latest","chrome/canary","firefox/latest","firefox/nightly","opera/latest","opera/next","safari/latest","iphone/latest","android-browser/latest"]},"bugs":{"url":"https://github.com/wooorm/retext/issues"},"homepage":"https://github.com/wooorm/retext","_id":"retext@0.1.0","_shasum":"af1dd42db7cdba7f9bf9eb2cbe5991d24003d5e2","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"wooorm","email":"tituswormer@gmail.com"},"maintainers":[{"name":"wooorm","email":"tituswormer@gmail.com"}],"dist":{"shasum":"af1dd42db7cdba7f9bf9eb2cbe5991d24003d5e2","tarball":"https://registry.npmjs.org/retext/-/retext-0.1.0.tgz","integrity":"sha512-3Hv4f/lRVoPivt7aDiF56BHUposBnj0LPbj/KbqfBLfMNDJV7OSWrYIsr+xX5+XbyVr8fUMysdVZ63wQbPnXpg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCwURr9AAff5J3uRB3i/z+/xMBb82oTBIOV9AiXwdhQJAIhAN4kHpc/IU1uOdeuXRawi8Zzc3ELq1AYTEbe0HsoUCXy"}]},"directories":{}},"0.1.1":{"name":"retext","version":"0.1.1","description":"Extensible system for analysing and manipulating natural language","keywords":["natural","language","parser","analyse","manipulate","parse-english","textom"],"author":{"name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","dependencies":{"parse-latin":"^0.1.0-rc.6","textom":"^0.1.0-rc.3"},"devDependencies":{"eslint":"^0.7.4","istanbul":"^0.3.0","jscs":"^1.5.8","matcha":"^0.5.0","mocha":"^1.21.0"},"repository":{"type":"git","url":"https://github.com/wooorm/retext.git"},"scripts":{"test":"_mocha --reporter spec --check-leaks -u exports spec/retext.spec.js","test-travis":"istanbul cover node_modules/.bin/_mocha --report lcovonly -- --reporter spec --check-leaks -u exports spec/retext.spec.js","lint":"npm run-script lint-api && npm run-script lint-test && npm run-script lint-benchmark && npm run-script lint-style","lint-api":"eslint index.js --env node --env browser --rule 'quotes: [2, single]'","lint-test":"eslint spec/retext.spec.js --env node --env mocha --rule 'quotes: [2, single]'","lint-benchmark":"eslint benchmark/index.js --env node --global suite,set,bench --rule 'quotes: [2, single]'","lint-style":"jscs index.js spec/retext.spec.js benchmark/index.js --reporter=inline","install-browser-test":"npm install browserify","build-browser-test":"browserify spec/retext.spec.js -o spec/browser.spec.js","coverage":"istanbul cover node_modules/.bin/_mocha -- -- spec/retext.spec.js","benchmark":"matcha","make":"npm run-script lint && npm run-script coverage"},"testling":{"files":"spec/retext.spec.js","harness":"mocha","browsers":["iexplore/latest","chrome/latest","chrome/canary","firefox/latest","firefox/nightly","opera/latest","opera/next","safari/latest","iphone/latest","android-browser/latest"]},"bugs":{"url":"https://github.com/wooorm/retext/issues"},"homepage":"https://github.com/wooorm/retext","_id":"retext@0.1.1","_shasum":"7a1fd9573d693fdc6743dee1938291b1d5403b68","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"wooorm","email":"tituswormer@gmail.com"},"maintainers":[{"name":"wooorm","email":"tituswormer@gmail.com"}],"dist":{"shasum":"7a1fd9573d693fdc6743dee1938291b1d5403b68","tarball":"https://registry.npmjs.org/retext/-/retext-0.1.1.tgz","integrity":"sha512-9cf+wrGl7FfRcXKez5e+B42g90LpYNWxz/puHlk54m+j5aH5eNZLjOI89iXDRQYeX4RthibEYkgc4GnOY+B1Iw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQD47lpx6CFfXcxdMaSzOzcQn60I/wR5fgu+aFYryPgreQIgN1mxO/tidBTEjUquabIbsvQ7Ps2ThtTrJDOk76K2YsU="}]},"directories":{}},"0.2.0-rc.1":{"name":"retext","version":"0.2.0-rc.1","description":"Extensible system for analysing and manipulating natural language","keywords":["natural","language","parser","analyse","manipulate","parse-english","textom"],"author":{"name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","dependencies":{"parse-latin":"^0.1.0-rc.6","textom":"^0.1.0-rc.3","ware":"^1.0.1"},"devDependencies":{"eslint":"^0.8.0","istanbul":"^0.3.0","jscs":"^1.5.8","matcha":"^0.5.0","mocha":"^1.21.0"},"repository":{"type":"git","url":"https://github.com/wooorm/retext.git"},"scripts":{"test":"_mocha --reporter spec --check-leaks -u exports spec/retext.spec.js","test-travis":"istanbul cover node_modules/.bin/_mocha --report lcovonly -- --reporter spec --check-leaks -u exports spec/retext.spec.js","lint":"npm run-script lint-api && npm run-script lint-test && npm run-script lint-benchmark && npm run-script lint-style","lint-api":"eslint index.js --env node --env browser --rule 'quotes: [2, single]'","lint-test":"eslint spec/retext.spec.js --env node --env mocha --rule 'quotes: [2, single]'","lint-benchmark":"eslint benchmark/index.js --env node --global suite,set,bench --rule 'quotes: [2, single]'","lint-style":"jscs index.js spec/retext.spec.js benchmark/index.js --reporter=inline","install-browser-test":"npm install browserify","build-browser-test":"browserify spec/retext.spec.js -o spec/browser.spec.js","coverage":"istanbul cover node_modules/.bin/_mocha -- -- spec/retext.spec.js","benchmark":"matcha","make":"npm run-script lint && npm run-script coverage"},"testling":{"files":"spec/retext.spec.js","harness":"mocha","browsers":["iexplore/latest","chrome/latest","chrome/canary","firefox/latest","firefox/nightly","opera/latest","opera/next","safari/latest","iphone/latest","android-browser/latest"]},"bugs":{"url":"https://github.com/wooorm/retext/issues"},"homepage":"https://github.com/wooorm/retext","_id":"retext@0.2.0-rc.1","_shasum":"6c58b0fb5fcb5b793dd83696cf7f981c015db0d6","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"wooorm","email":"tituswormer@gmail.com"},"maintainers":[{"name":"wooorm","email":"tituswormer@gmail.com"}],"dist":{"shasum":"6c58b0fb5fcb5b793dd83696cf7f981c015db0d6","tarball":"https://registry.npmjs.org/retext/-/retext-0.2.0-rc.1.tgz","integrity":"sha512-7oPgxIjkkju/YkfwcQgBV+5+SxLdVLgZM2E5xmW24d/iEbowmNNq1xux4jNhcteRmGGOZQzRhlhuPiJGEN5z3w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCoqouzvYRe20vaezQMy0e0CvDUwnJ0YWSm1I2H94IQ+wIgbkUGWxJ8dyi/7Y/8/g4PVZc4xbNzac79VkV9atak0Ow="}]},"directories":{}},"0.2.0-rc.2":{"name":"retext","version":"0.2.0-rc.2","description":"Extensible system for analysing and manipulating natural language","keywords":["natural","language","parser","analyse","manipulate","parse-english","textom"],"author":{"name":"Titus Wormer","email":"tituswormer@gmail.com"},"license":"MIT","dependencies":{"parse-latin":"^0.1.0-rc.6","textom":"^0.1.0-rc.3","ware":"^1.0.1"},"devDependencies":{"eslint":"^0.8.0","istanbul":"^0.3.0","jscs":"^1.5.8","matcha":"^0.5.0","mocha":"^1.21.0"},"repository":{"type":"git","url":"https://github.com/wooorm/retext.git"},"scripts":{"test":"_mocha --reporter spec --check-leaks -u exports spec/retext.spec.js","test-travis":"istanbul cover node_modules/.bin/_mocha --report lcovonly -- --reporter spec --check-leaks -u exports spec/retext.spec.js","lint":"npm run-script lint-api && npm run-script lint-test && npm run-script lint-benchmark && npm run-script lint-style","lint-api":"eslint index.js --env node --env browser --rule 'quotes: [2, single]'","lint-test":"eslint spec/retext.spec.js --env node --env mocha --rule 'quotes: [2, single]'","lint-benchmark":"eslint benchmark/index.js --env node --global suite,set,bench --rule 'quotes: [2, single]'","lint-style":"jscs index.js spec/retext.spec.js benchmark/index.js --reporter=inline","install-browser-test":"npm install browserify","build-browser-test":"browserify spec/retext.spec.js -o spec/browser.spec.js","coverage":"istanbul cover node_modules/.bin/_mocha -- -- spec/retext.spec.js","benchmark":"matcha","make":"npm run-script lint && npm run-script coverage"},"testling":{"files":"spec/retext.spec.js","harness":"mocha","browsers":["iexplore/latest","chrome/latest","chrome/canary","firefox/latest","firefox/nightly","opera/latest","opera/next","safari/latest","iphone/latest","android-browser/latest"]},"bugs":{"url":"https://github.com/wooorm/retext/issues"},"homepage":"https://github.com/wooorm/retext","_id":"retext@0.2.0-rc.2","_shasum":"94abb9d60b2a4d942b2fd64d330c5174a73877f3","_from":".","_npmVersion":"1.4.9","_npmUser":{"name":"wooorm","email":"tituswormer@gmail.com"},"maintainers":[{"name":"wooorm","email":"tituswormer@gmail.com"}],"dist":{"shasum":"94abb9d60b2a4d942b2fd64d330c5174a73877f3","tarball":"https://registry.npmjs.org/retext/-/retext-0.2.0-rc.2.tgz","integrity":"sha512-jQHs7dByf5AdzugfziBwYnMCJugPYx+el0nx5ZcIA/Nm6mvkmZhkD/T6TU81EhdVnDYS2BdRhJOuiEF+JOxFww==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCno4hAVqpJFdUovVn2He0qVM28vujlHG64VUjbvAk7NwIhAKnt6MN3X7uHOxLv0wRbVYH+S5RiHyWeTLT0W2ND38qs"}]},"directories":{}},"0.2.0-rc.3":{"name":"retext","version":"0.2.0-rc.3","description":"Extensible system for analysing and manipulating natural language","license":"MIT","keywords":["natural","language","parser","analyse","manipulate","parse-english","textom"],"dependencies":{"parse-latin":"^0.1.3","textom":"^0.1.0","ware":"^1.2.0"},"repository":{"type":"git","url":"https://github.com/wooorm/retext.git"},"author":{"name":"Titus Wormer","email":"tituswormer@gmail.com"},"devDependencies":{"eslint":"^0.8.0","istanbul":"^0.3.0","jscs":"^1.6.0","matcha":"^0.5.0","mocha":"^1.21.0"},"scripts":{"test":"_mocha --reporter spec --check-leaks -u exports spec/retext.spec.js","test-travis":"istanbul cover node_modules/.bin/_mocha --report lcovonly -- --reporter spec --check-leaks -u exports spec/retext.spec.js","lint":"npm run-script lint-api && npm run-script lint-test && npm run-script lint-benchmark && npm run-script lint-style","lint-api":"eslint index.js --env node --env browser --rule 'quotes: [2, single]'","lint-test":"eslint spec/retext.spec.js --env node --env mocha --rule 'quotes: [2, single]'","lint-benchmark":"eslint benchmark/index.js --env node --global suite,set,bench --rule 'quotes: [2, single]'","lint-style":"jscs index.js spec/retext.spec.js benchmark/index.js --reporter=inline","install-browser-test":"npm install browserify","build-browser-test":"browserify spec/retext.spec.js -o spec/browser.spec.js","coverage":"istanbul cover node_modules/.bin/_mocha -- -- spec/retext.spec.js","benchmark":"matcha","make":"npm run-script lint && npm run-script coverage"},"gitHead":"23a7923ac03fdff290fa595d20760af2832ac4f0","bugs":{"url":"https://github.com/wooorm/retext/issues"},"homepage":"https://github.com/wooorm/retext","_id":"retext@0.2.0-rc.3","_shasum":"a722e021c0b592cd52a5faaa1ea0c51fade11069","_from":".","_npmVersion":"2.0.0","_npmUser":{"name":"wooorm","email":"tituswormer@gmail.com"},"maintainers":[{"name":"wooorm","email":"tituswormer@gmail.com"}],"dist":{"shasum":"a722e021c0b592cd52a5faaa1ea0c51fade11069","tarball":"https://registry.npmjs.org/retext/-/retext-0.2.0-rc.3.tgz","integrity":"sha512-e8/6NRHIaLcScCP8zvPK9bV8fLuXVfL3mOmaepgkXwRhrSqpLBJmwgs8NVCRHZDPVAWzCYEOaxGVQd+a+bkcNQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDdx/xsIQejpnR1xt1j8x5v1m48vVyURr+DhX7FS+b3WAiAyp2wVOpTw7IOM/mvj6Jaa3h6h3WazADTmbBto54YW9Q=="}]},"directories":{}},"0.2.0-rc.4":{"name":"retext","version":"0.2.0-rc.4","description":"Extensible system for analysing and manipulating natural language","license":"MIT","keywords":["natural","language","parser","analyse","manipulate","nlcst","textom"],"dependencies":{"parse-latin":"^0.2.0-rc.3","textom":"^0.2.0","ware":"^1.2.0"},"repository":{"type":"git","url":"https://github.com/wooorm/retext.git"},"author":{"name":"Titus Wormer","email":"tituswormer@gmail.com"},"devDependencies":{"eslint":"^0.8.0","istanbul":"^0.3.0","jscs":"^1.6.0","matcha":"^0.5.0","mocha":"^1.21.0"},"scripts":{"test":"_mocha --reporter spec --check-leaks -u exports test.js","test-travis":"istanbul cover node_modules/.bin/_mocha --report lcovonly -- --reporter spec --check-leaks -u exports test.js","lint":"npm run-script lint-api && npm run-script lint-test && npm run-script lint-benchmark && npm run-script lint-style","lint-api":"eslint index.js --env node --env browser --rule 'quotes: [2, single]'","lint-test":"eslint test.js --env node --env mocha --rule 'quotes: [2, single]'","lint-benchmark":"eslint benchmark/index.js --env node --global suite,set,bench --rule 'quotes: [2, single]'","lint-style":"jscs index.js test.js benchmark/index.js --reporter=inline","coverage":"istanbul cover node_modules/.bin/_mocha -- -- test.js","benchmark":"matcha","make":"npm run-script lint && npm run-script coverage"},"gitHead":"6c80229b797ecf9c23a0da0d53bfab99d45fe3ba","bugs":{"url":"https://github.com/wooorm/retext/issues"},"homepage":"https://github.com/wooorm/retext","_id":"retext@0.2.0-rc.4","_shasum":"9242c00eaf5fb9ed7918c26d78917d9241d557d0","_from":".","_npmVersion":"2.0.0","_npmUser":{"name":"wooorm","email":"tituswormer@gmail.com"},"maintainers":[{"name":"wooorm","email":"tituswormer@gmail.com"}],"dist":{"shasum":"9242c00eaf5fb9ed7918c26d78917d9241d557d0","tarball":"https://registry.npmjs.org/retext/-/retext-0.2.0-rc.4.tgz","integrity":"sha512-RvPI4rWmJ2kYk7jVkj44Fo71FWCJCeQerQfpttewOjZiLxeC6DviKxUgY9qvUlvkrONEcTvFyHgnUiIgVpSZZQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCi+AzHmDzD83uCuKxl41jVSVTpoM/FTlF0pIJsWK2OgQIhAPkcWvja1zO3yjuuNF60tjy4iQfx/3zrDKL+2Yx2NIcw"}]},"directories":{}},"0.2.0-rc.5":{"name":"retext","version":"0.2.0-rc.5","description":"Extensible system for analysing and manipulating natural language","license":"MIT","keywords":["natural","language","parser","analyse","manipulate","nlcst","textom"],"dependencies":{"parse-latin":"^0.2.0-rc.3","textom":"^0.2.1","ware":"^1.2.0"},"repository":{"type":"git","url":"https://github.com/wooorm/retext.git"},"author":{"name":"Titus Wormer","email":"tituswormer@gmail.com"},"devDependencies":{"eslint":"^0.8.0","istanbul":"^0.3.0","jscs":"^1.6.0","matcha":"^0.5.0","mocha":"^1.21.0"},"scripts":{"test":"_mocha --reporter spec --check-leaks -u exports test.js","test-travis":"istanbul cover node_modules/.bin/_mocha --report lcovonly -- --reporter spec --check-leaks -u exports test.js","lint":"npm run-script lint-api && npm run-script lint-test && npm run-script lint-benchmark && npm run-script lint-style","lint-api":"eslint index.js --env node --env browser --rule 'quotes: [2, single]'","lint-test":"eslint test.js --env node --env mocha --rule 'quotes: [2, single]'","lint-benchmark":"eslint benchmark.js --env node --global suite,set,bench --rule 'quotes: [2, single]'","lint-style":"jscs index.js test.js benchmark.js --reporter=inline","coverage":"istanbul cover node_modules/.bin/_mocha -- -- test.js","benchmark":"matcha benchmark.js","make":"npm run-script lint && npm run-script coverage"},"gitHead":"c9805aa9fd7e0948f1504e78ba8bdbae8a8ed0ce","bugs":{"url":"https://github.com/wooorm/retext/issues"},"homepage":"https://github.com/wooorm/retext","_id":"retext@0.2.0-rc.5","_shasum":"fa633b2e077d05941376f738a0456a1dbcd5d634","_from":".","_npmVersion":"2.0.0","_npmUser":{"name":"wooorm","email":"tituswormer@gmail.com"},"maintainers":[{"name":"wooorm","email":"tituswormer@gmail.com"}],"dist":{"shasum":"fa633b2e077d05941376f738a0456a1dbcd5d634","tarball":"https://registry.npmjs.org/retext/-/retext-0.2.0-rc.5.tgz","integrity":"sha512-/Whvmw5Dqjf+OI+BMLJgHn60QPcpx4iutv3M84dWi3b/QoWnUw5NvPQnIYFpshoreUsHXjgiFDeqPkEABEpzHQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIFBeC52eclXyU3BM7rMIeT6rZGUXjN522bxpV9B/sm+XAiAkz87v2jz7gKGandHp9l8clfM9W6OKWtc6kyXoohnqqw=="}]},"directories":{}},"0.2.0":{"name":"retext","version":"0.2.0","description":"Extensible system for analysing and manipulating natural language","license":"MIT","keywords":["natural","language","parser","analyse","manipulate","nlcst","textom"],"dependencies":{"parse-latin":"^0.2.0-rc.3","textom":"^0.2.1","ware":"^1.2.0"},"repository":{"type":"git","url":"https://github.com/wooorm/retext.git"},"author":{"name":"Titus Wormer","email":"tituswormer@gmail.com"},"devDependencies":{"eslint":"^0.8.0","istanbul":"^0.3.0","jscs":"^1.6.0","matcha":"^0.5.0","mocha":"^1.21.0"},"scripts":{"test":"_mocha --reporter spec --check-leaks -u exports test.js","test-travis":"istanbul cover node_modules/.bin/_mocha --report lcovonly -- --reporter spec --check-leaks -u exports test.js","lint":"npm run-script lint-api && npm run-script lint-test && npm run-script lint-benchmark && npm run-script lint-style","lint-api":"eslint index.js --env node --env browser --rule 'quotes: [2, single]'","lint-test":"eslint test.js --env node --env mocha --rule 'quotes: [2, single]'","lint-benchmark":"eslint benchmark.js --env node --global suite,set,bench --rule 'quotes: [2, single]'","lint-style":"jscs index.js test.js benchmark.js --reporter=inline","coverage":"istanbul cover node_modules/.bin/_mocha -- -- test.js","benchmark":"matcha benchmark.js","make":"npm run-script lint && npm run-script coverage"},"gitHead":"a9a647ee8b0d1c62e765adb4a594b005ab2c5c56","bugs":{"url":"https://github.com/wooorm/retext/issues"},"homepage":"https://github.com/wooorm/retext","_id":"retext@0.2.0","_shasum":"7a529b0064d4bd17d6f37e408de1edec05b08333","_from":".","_npmVersion":"2.1.3","_nodeVersion":"0.11.14","_npmUser":{"name":"wooorm","email":"tituswormer@gmail.com"},"maintainers":[{"name":"wooorm","email":"tituswormer@gmail.com"}],"dist":{"shasum":"7a529b0064d4bd17d6f37e408de1edec05b08333","tarball":"https://registry.npmjs.org/retext/-/retext-0.2.0.tgz","integrity":"sha512-4AJN1ziv1Y+ccFno3mOXeYeqYkajZL7Kto5Sik1jlMNjLq/ghVyJ92xLj8kD+BtLS8OYxDEtPoJKFQ4somy3kw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIFBS8JlndehFgLyzFVjCpcpWFTZo6lJkXBO+bFzwPeGJAiB0O3AwdQHhlKQArzBrm5PWVf4cC24soM5vYFEcvEivZg=="}]},"directories":{}},"0.2.1":{"name":"retext","version":"0.2.1","description":"Extensible system for analysing and manipulating natural language","license":"MIT","keywords":["natural","language","parser","analyse","manipulate","nlcst","textom"],"dependencies":{"nlcst-to-textom":"^0.0.1","parse-latin":"^0.2.0","textom":"^0.2.1","ware":"^1.2.0"},"repository":{"type":"git","url":"https://github.com/wooorm/retext.git"},"author":{"name":"Titus Wormer","email":"tituswormer@gmail.com"},"devDependencies":{"eslint":"^0.8.0","istanbul":"^0.3.0","jscs":"^1.7.0","matcha":"^0.5.0","mocha":"^1.21.0"},"scripts":{"test":"_mocha --reporter spec --check-leaks -u exports test.js","test-travis":"istanbul cover node_modules/.bin/_mocha --report lcovonly -- --reporter spec --check-leaks -u exports test.js","lint":"npm run-script lint-api && npm run-script lint-test && npm run-script lint-benchmark && npm run-script lint-style","lint-api":"eslint index.js --env node --env browser --rule 'quotes: [2, single]'","lint-test":"eslint test.js --env node --env mocha --rule 'quotes: [2, single]'","lint-benchmark":"eslint benchmark.js --env node --global suite,set,bench --rule 'quotes: [2, single]'","lint-style":"jscs index.js test.js benchmark.js --reporter=inline","coverage":"istanbul cover node_modules/.bin/_mocha -- -- test.js","benchmark":"matcha benchmark.js","make":"npm run-script lint && npm run-script coverage"},"gitHead":"8d1500982acabcddc68274648b4a77b85b88adb4","bugs":{"url":"https://github.com/wooorm/retext/issues"},"homepage":"https://github.com/wooorm/retext","_id":"retext@0.2.1","_shasum":"7209664001c6401f8cba7435ae791026232adff5","_from":".","_npmVersion":"2.1.3","_nodeVersion":"0.11.14","_npmUser":{"name":"wooorm","email":"tituswormer@gmail.com"},"maintainers":[{"name":"wooorm","email":"tituswormer@gmail.com"}],"dist":{"shasum":"7209664001c6401f8cba7435ae791026232adff5","tarball":"https://registry.npmjs.org/retext/-/retext-0.2.1.tgz","integrity":"sha512-iCrYC+0Jf61JkMygXAUkFpH8idIs3U3KSaBn3eS0/9t84e4sMeP64XGG3i1U8yBUbcIABXmi4aJDPv/py6K2Lg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDY4OnVfMIStOBvSIbQf7hFMDRIDBqoM7VJDlTPbk88TwIgNeQ9yJlEAqpq6I1MldmeEqnd/NSaeOyczDRCnQWE0P8="}]},"directories":{}},"0.3.0-rc.1":{"name":"retext","version":"0.3.0-rc.1","description":"Extensible system for analysing and manipulating natural language","license":"MIT","keywords":["natural","language","parser","analyse","manipulate","nlcst","textom"],"dependencies":{"nlcst-to-textom":"^0.0.1","parse-latin":"^0.3.0-rc.1","textom":"^0.3.0-rc.2","ware":"^1.2.0"},"repository":{"type":"git","url":"https://github.com/wooorm/retext.git"},"author":{"name":"Titus Wormer","email":"tituswormer@gmail.com"},"devDependencies":{"eslint":"^0.8.0","istanbul":"^0.3.0","jscs":"^1.7.0","matcha":"^0.5.0","mocha":"^1.21.0"},"scripts":{"test":"_mocha --reporter spec --check-leaks -u exports test.js","test-travis":"istanbul cover node_modules/.bin/_mocha --report lcovonly -- --reporter spec --check-leaks -u exports test.js","lint":"npm run-script lint-api && npm run-script lint-test && npm run-script lint-benchmark && npm run-script lint-style","lint-api":"eslint index.js --env node --env browser --rule 'quotes: [2, single]'","lint-test":"eslint test.js --env node --env mocha --rule 'quotes: [2, single]'","lint-benchmark":"eslint benchmark.js --env node --global suite,set,bench --rule 'quotes: [2, single]'","lint-style":"jscs index.js test.js benchmark.js --reporter=inline","coverage":"istanbul cover node_modules/.bin/_mocha -- -- test.js","benchmark":"matcha benchmark.js","make":"npm run-script lint && npm run-script coverage"},"gitHead":"85daa7ef9ca20039619e522cb0343668843f3aa6","bugs":{"url":"https://github.com/wooorm/retext/issues"},"homepage":"https://github.com/wooorm/retext","_id":"retext@0.3.0-rc.1","_shasum":"f22bb95e9ae78c6576e1155215b4f8ff63712dcc","_from":".","_npmVersion":"2.1.3","_nodeVersion":"0.11.14","_npmUser":{"name":"wooorm","email":"tituswormer@gmail.com"},"maintainers":[{"name":"wooorm","email":"tituswormer@gmail.com"}],"dist":{"shasum":"f22bb95e9ae78c6576e1155215b4f8ff63712dcc","tarball":"https://registry.npmjs.org/retext/-/retext-0.3.0-rc.1.tgz","integrity":"sha512-ifpnmbtx+GcOMCic5H8Qb95bvqjXc9SbBC9oIy8qZ3lIAmZwnSth3b1/Sr6HjO4hBSx0VVDiyoAVWpRbSVKZKw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDRWvtSJMAOmy3JY5IWe4sIqI7LjIFfqv7oZjb5qn43fgIhALu7hV4/SN8vYmZxN3h54RZR3HSABaINMbexZQeuOzJW"}]},"directories":{}},"0.3.0-rc.2":{"name":"retext","version":"0.3.0-rc.2","description":"Extensible system for analysing and manipulating natural language","license":"MIT","keywords":["natural","language","parser","analyse","manipulate","nlcst","textom"],"dependencies":{"nlcst-to-textom":"^0.0.1","parse-latin":"^0.3.0-rc.1","textom":"^0.3.0-rc.2","ware":"^1.2.0"},"repository":{"type":"git","url":"https://github.com/wooorm/retext.git"},"author":{"name":"Titus Wormer","email":"tituswormer@gmail.com"},"devDependencies":{"eslint":"^0.9.0","istanbul":"^0.3.0","jscs":"^1.7.0","matcha":"^0.5.0","mocha":"^2.0.0"},"scripts":{"test":"_mocha --reporter spec --check-leaks -u exports test.js","test-travis":"istanbul cover node_modules/.bin/_mocha --report lcovonly -- --reporter spec --check-leaks -u exports test.js","lint":"npm run-script lint-api && npm run-script lint-test && npm run-script lint-benchmark && npm run-script lint-style","lint-api":"eslint index.js --env node --env browser","lint-test":"eslint test.js --env node --env mocha","lint-benchmark":"eslint benchmark.js --env node --global suite,set,bench","lint-style":"jscs index.js test.js benchmark.js --reporter=inline","coverage":"istanbul cover node_modules/.bin/_mocha -- -- test.js","benchmark":"matcha benchmark.js","make":"npm run-script lint && npm run-script coverage"},"gitHead":"d28c6080c31614e1d5d85554a6989afc1bcba622","bugs":{"url":"https://github.com/wooorm/retext/issues"},"homepage":"https://github.com/wooorm/retext","_id":"retext@0.3.0-rc.2","_shasum":"afdd377defe94cd2335e95b2fbc481c9f106eb97","_from":".","_npmVersion":"2.1.3","_nodeVersion":"0.11.14","_npmUser":{"name":"wooorm","email":"tituswormer@gmail.com"},"maintainers":[{"name":"wooorm","email":"tituswormer@gmail.com"}],"dist":{"shasum":"afdd377defe94cd2335e95b2fbc481c9f106eb97","tarball":"https://registry.npmjs.org/retext/-/retext-0.3.0-rc.2.tgz","integrity":"sha512-ncidSkkvqE/P0uWCIZ+QLQ/mjFN0cb/yLhngAi4jRSz3HfkszalmsG7gltyHLCJHXQW4ymsKLLevI+pBp7p2pg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCb176O+wV/rBYkvwP9PePqjr+hEOzSYXXL3ZcMV60TvAIhAN4ZNXD260/Axz/mkfOnCjMtvbPnjCvrke4UKMXK94Gl"}]},"directories":{}},"0.3.0":{"name":"retext","version":"0.3.0","description":"Extensible system for analysing and manipulating natural language","license":"MIT","keywords":["natural","language","parser","analyse","manipulate","nlcst","textom"],"dependencies":{"nlcst-to-textom":"^0.0.1","parse-latin":"^0.3.0","textom":"^0.3.0","ware":"^1.2.0"},"repository":{"type":"git","url":"https://github.com/wooorm/retext.git"},"author":{"name":"Titus Wormer","email":"tituswormer@gmail.com"},"devDependencies":{"eslint":"^0.9.0","istanbul":"^0.3.0","jscs":"^1.7.0","matcha":"^0.5.0","mocha":"^2.0.0"},"scripts":{"test":"_mocha --reporter spec --check-leaks -u exports test.js","test-travis":"istanbul cover node_modules/.bin/_mocha --report lcovonly -- --reporter spec --check-leaks -u exports test.js","lint":"npm run-script lint-api && npm run-script lint-test && npm run-script lint-benchmark && npm run-script lint-style","lint-api":"eslint index.js --env node --env browser","lint-test":"eslint test.js --env node --env mocha","lint-benchmark":"eslint benchmark.js --env node --global suite,set,bench","lint-style":"jscs index.js test.js benchmark.js --reporter=inline","coverage":"istanbul cover node_modules/.bin/_mocha -- -- test.js","benchmark":"matcha benchmark.js","make":"npm run-script lint && npm run-script coverage"},"gitHead":"1e17e64587a142d2c0bab164f825c082202a601a","bugs":{"url":"https://github.com/wooorm/retext/issues"},"homepage":"https://github.com/wooorm/retext","_id":"retext@0.3.0","_shasum":"5a1f42a5ae3661d4285683fe70f4e18039037663","_from":".","_npmVersion":"2.1.3","_nodeVersion":"0.11.14","_npmUser":{"name":"wooorm","email":"tituswormer@gmail.com"},"maintainers":[{"name":"wooorm","email":"tituswormer@gmail.com"}],"dist":{"shasum":"5a1f42a5ae3661d4285683fe70f4e18039037663","tarball":"https://registry.npmjs.org/retext/-/retext-0.3.0.tgz","integrity":"sha512-D8n+VqzpAYe2kMv95Vjcw5bT8mU1MxbfmpF+Dtod6D4tw7Zv7RwU3Kn6JtUkD0SYajtIN3cyfWXh1MqCdq0JLw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIGG5UqLBfUplTeij+ipD3p3fiHlRjGsf8B85Fbs96s+BAiEAk4Fi/qyW/lE2ensj6XqC7B7IpFYqgSeCs87ZV3+9HIE="}]},"directories":{}},"0.4.0-rc.1":{"name":"retext","version":"0.4.0-rc.1","description":"Extensible system for analysing and manipulating natural language","license":"MIT","keywords":["natural","language","parser","analyse","manipulate","nlcst","textom"],"dependencies":{"nlcst-to-textom":"^0.1.0","parse-latin":"^0.4.0-rc.1","textom":"^0.3.0","ware":"^1.2.0"},"repository":{"type":"git","url":"https://github.com/wooorm/retext.git"},"author":{"name":"Titus Wormer","email":"tituswormer@gmail.com"},"devDependencies":{"eslint":"^0.9.0","istanbul":"^0.3.0","jscs":"^1.0.0","matcha":"^0.6.0","mocha":"^2.0.0"},"scripts":{"test":"_mocha --reporter spec --check-leaks -u exports test.js","test-travis":"istanbul cover node_modules/.bin/_mocha --report lcovonly -- --reporter spec --check-leaks -u exports test.js","coverage":"istanbul cover node_modules/.bin/_mocha -- -- test.js","lint":"npm run lint-api && npm run lint-test && npm run lint-benchmark && npm run lint-style","lint-api":"eslint index.js","lint-test":"eslint test.js --env mocha","lint-benchmark":"eslint benchmark.js --global suite,set,bench","lint-style":"jscs index.js test.js benchmark.js --reporter=inline","benchmark":"matcha benchmark.js","make":"npm run lint && npm run coverage"},"gitHead":"cb3738a4faab7bae39b3ddb50ab644b4a19e4b1c","bugs":{"url":"https://github.com/wooorm/retext/issues"},"homepage":"https://github.com/wooorm/retext","_id":"retext@0.4.0-rc.1","_shasum":"c3e756f8c7b39df96ef3741a37c0c8e823d58c6e","_from":".","_npmVersion":"2.1.3","_nodeVersion":"0.11.14","_npmUser":{"name":"wooorm","email":"tituswormer@gmail.com"},"maintainers":[{"name":"wooorm","email":"tituswormer@gmail.com"}],"dist":{"shasum":"c3e756f8c7b39df96ef3741a37c0c8e823d58c6e","tarball":"https://registry.npmjs.org/retext/-/retext-0.4.0-rc.1.tgz","integrity":"sha512-W80wRLNIKFTOo74+bMX4/39+hLo0JXrl/RY7ZlI+hIpYYbXGqe/QySigAyeP8IPQ6iHjdzmY46Zv2Xt1/gqQHA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDUeg649RT56TbPj8f0v15Ut1Bv0FOy3Asw703NjYqDTgIhALTyZkffTNIt37Gkls3nlmPsB6CvrvCQam4qYsOcJe/1"}]},"directories":{}},"0.4.0-rc.2":{"name":"retext","version":"0.4.0-rc.2","description":"Extensible system for analysing and manipulating natural language","license":"MIT","keywords":["natural","language","parser","analyse","manipulate","nlcst","textom"],"dependencies":{"nlcst-to-textom":"^0.1.0","parse-latin":"^0.4.0-rc.2","textom":"^0.3.1","ware":"^1.2.0"},"repository":{"type":"git","url":"https://github.com/wooorm/retext.git"},"author":{"name":"Titus Wormer","email":"tituswormer@gmail.com"},"devDependencies":{"eslint":"^0.9.0","istanbul":"^0.3.0","jscs":"^1.0.0","matcha":"^0.6.0","mocha":"^2.0.0"},"scripts":{"test":"_mocha --reporter spec --check-leaks -u exports test.js","test-travis":"istanbul cover node_modules/.bin/_mocha --report lcovonly -- --reporter spec --check-leaks -u exports test.js","coverage":"istanbul cover node_modules/.bin/_mocha -- -- test.js","lint":"npm run lint-api && npm run lint-test && npm run lint-benchmark && npm run lint-style","lint-api":"eslint index.js","lint-test":"eslint test.js --env mocha","lint-benchmark":"eslint benchmark.js --global suite,set,bench","lint-style":"jscs index.js test.js benchmark.js --reporter=inline","benchmark":"matcha benchmark.js","make":"npm run lint && npm run coverage"},"gitHead":"68cfc2e4f8b0a6131cb4b408f4c593491171d26a","bugs":{"url":"https://github.com/wooorm/retext/issues"},"homepage":"https://github.com/wooorm/retext","_id":"retext@0.4.0-rc.2","_shasum":"2e56ff8397c846484293c616b36ba07a2a3d188f","_from":".","_npmVersion":"2.1.3","_nodeVersion":"0.11.14","_npmUser":{"name":"wooorm","email":"tituswormer@gmail.com"},"maintainers":[{"name":"wooorm","email":"tituswormer@gmail.com"}],"dist":{"shasum":"2e56ff8397c846484293c616b36ba07a2a3d188f","tarball":"https://registry.npmjs.org/retext/-/retext-0.4.0-rc.2.tgz","integrity":"sha512-13nvjk9KMZUPl/hqyq8UMDuyiAiSaX7i2SRhcDfZZ37JKQn+UfvsChGnz1MB61GXZkeNb7W2OCM+P3eizw9ekw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQC8eGoKjnm2DESy+gIlFAi9w8iWkPIsSx1f2RMQAwhXDQIhAJU6BKV1gz8AzKPEiPtGF12rG5f81fu9QJklKkChyTkj"}]},"directories":{}},"0.4.0":{"name":"retext","version":"0.4.0","description":"Extensible system for analysing and manipulating natural language","license":"MIT","keywords":["natural","language","parser","analyse","manipulate","nlcst","textom"],"dependencies":{"nlcst-to-textom":"^0.1.0","parse-latin":"^0.4.0","textom":"^0.3.1","ware":"^1.2.0"},"repository":{"type":"git","url":"https://github.com/wooorm/retext.git"},"author":{"name":"Titus Wormer","email":"tituswormer@gmail.com"},"devDependencies":{"eslint":"^0.9.0","istanbul":"^0.3.0","jscs":"^1.0.0","matcha":"^0.6.0","mocha":"^2.0.0"},"scripts":{"test":"_mocha --reporter spec --check-leaks -u exports test.js","test-travis":"istanbul cover node_modules/.bin/_mocha --report lcovonly -- --reporter spec --check-leaks -u exports test.js","coverage":"istanbul cover node_modules/.bin/_mocha -- -- test.js","lint":"npm run lint-api && npm run lint-test && npm run lint-benchmark && npm run lint-style","lint-api":"eslint index.js","lint-test":"eslint test.js --env mocha","lint-benchmark":"eslint benchmark.js --global suite,set,bench","lint-style":"jscs index.js test.js benchmark.js --reporter=inline","benchmark":"matcha benchmark.js","make":"npm run lint && npm run coverage"},"gitHead":"98666022cce4b059c62ec75d4ae68bbbdc065cac","bugs":{"url":"https://github.com/wooorm/retext/issues"},"homepage":"https://github.com/wooorm/retext","_id":"retext@0.4.0","_shasum":"270a819ccbbbda5d6bb97fd2bfae8ff25ab748ab","_from":".","_npmVersion":"2.1.3","_nodeVersion":"0.11.14","_npmUser":{"name":"wooorm","email":"tituswormer@gmail.com"},"maintainers":[{"name":"wooorm","email":"tituswormer@gmail.com"}],"dist":{"shasum":"270a819ccbbbda5d6bb97fd2bfae8ff25ab748ab","tarball":"https://registry.npmjs.org/retext/-/retext-0.4.0.tgz","integrity":"sha512-h96Di/kX488YO8gKDMwAUPzpb0wMHnH+fsxKE7lcrXf1h38raNqFVZQD1xfF2J063dBW91nXjDdHl7vjY64upQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIFm0WGs5tQUsJYcf9HIKbA0wVI0fYe+vszXqhJai/uNKAiB6jBq5oSQRKv48Xl29Gq8uNH6IM1vnWiFXUkBKZScjBQ=="}]},"directories":{}},"0.5.0-rc.1":{"name":"retext","version":"0.5.0-rc.1","description":"Extensible system for analysing and manipulating natural language","license":"MIT","keywords":["natural","language","parser","analyse","manipulate","nlcst","textom"],"dependencies":{"nlcst-to-textom":"^0.2.0","parse-latin":"^0.4.0","textom":"^0.4.0-rc.2","ware":"^1.2.0"},"repository":{"type":"git","url":"https://github.com/wooorm/retext.git"},"author":{"name":"Titus Wormer","email":"tituswormer@gmail.com"},"devDependencies":{"eslint":"^0.10.0","istanbul":"^0.3.0","jscs":"^1.0.0","matcha":"^0.6.0","mocha":"^2.0.0"},"scripts":{"test":"_mocha --reporter spec --check-leaks -u exports test.js","test-travis":"istanbul cover node_modules/.bin/_mocha --report lcovonly -- --reporter spec --check-leaks -u exports test.js","coverage":"istanbul cover node_modules/.bin/_mocha -- -- test.js","lint-api":"eslint index.js","lint-test":"eslint test.js --env mocha","lint-benchmark":"eslint benchmark.js --global suite,set,bench","lint-style":"jscs index.js test.js benchmark.js --reporter=inline","lint":"npm run lint-api && npm run lint-test && npm run lint-benchmark && npm run lint-style","make":"npm run lint && npm run coverage","benchmark":"matcha benchmark.js"},"gitHead":"2ffd038c9a106a2c4ff62324ed1e45ce6b7154b8","bugs":{"url":"https://github.com/wooorm/retext/issues"},"homepage":"https://github.com/wooorm/retext","_id":"retext@0.5.0-rc.1","_shasum":"d848d28199e9181514c1020b1655d04427f04673","_from":".","_npmVersion":"2.1.3","_nodeVersion":"0.11.14","_npmUser":{"name":"wooorm","email":"tituswormer@gmail.com"},"maintainers":[{"name":"wooorm","email":"tituswormer@gmail.com"}],"dist":{"shasum":"d848d28199e9181514c1020b1655d04427f04673","tarball":"https://registry.npmjs.org/retext/-/retext-0.5.0-rc.1.tgz","integrity":"sha512-ptL9Di7em2bwr65LIaYiI/PHAjG3u7VbbsgLOht8CLi1XeikYYsc1Ii+62GBtvrBaWp8L2fSpudagmWseMaqXw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQCOTjgAHhhYMjPOLAyV2wn4UqnlCZXJfobsR9kEqzr3BgIgICGCvOkc2lXUvvK/+CE/s5MtXsZpa8WLZ2qfLTn4BtU="}]},"directories":{}},"0.5.0-rc.2":{"name":"retext","version":"0.5.0-rc.2","description":"Extensible system for analysing and manipulating natural language","license":"MIT","keywords":["natural","language","parser","analyse","manipulate","nlcst","textom"],"dependencies":{"nlcst-to-textom":"^0.2.0","parse-latin":"^0.4.0","textom":"^0.4.0-rc.3","ware":"^1.2.0"},"repository":{"type":"git","url":"https://github.com/wooorm/retext.git"},"author":{"name":"Titus Wormer","email":"tituswormer@gmail.com"},"devDependencies":{"eslint":"^0.10.0","istanbul":"^0.3.0","jscs":"^1.0.0","jscs-jsdoc":"^0.3.0","matcha":"^0.6.0","mocha":"^2.0.0"},"scripts":{"test":"_mocha --check-leaks test.js","test-travis":"istanbul cover _mocha --report lcovonly -- --check-leaks test.js","coverage":"istanbul cover _mocha -- -- test.js","lint-api":"eslint index.js","lint-test":"eslint --env mocha test.js","lint-benchmark":"eslint --global suite,set,bench benchmark.js","lint-style":"jscs --reporter inline index.js test.js benchmark.js","lint":"npm run lint-api && npm run lint-test && npm run lint-benchmark && npm run lint-style","make":"npm run lint && npm run coverage","benchmark":"matcha benchmark.js"},"gitHead":"67da5f1905a5b827becb0956bcd152abda42efbb","bugs":{"url":"https://github.com/wooorm/retext/issues"},"homepage":"https://github.com/wooorm/retext","_id":"retext@0.5.0-rc.2","_shasum":"056420062439822463446d2f5e930efc04c28b15","_from":".","_npmVersion":"2.1.3","_nodeVersion":"0.11.14","_npmUser":{"name":"wooorm","email":"tituswormer@gmail.com"},"maintainers":[{"name":"wooorm","email":"tituswormer@gmail.com"}],"dist":{"shasum":"056420062439822463446d2f5e930efc04c28b15","tarball":"https://registry.npmjs.org/retext/-/retext-0.5.0-rc.2.tgz","integrity":"sha512-HuK+tXsIN22IFS4rIppIYCRLoX5MpqZzl+K3vYh11rnA/6AjGf+9mcdqKkk80uSfgahV+Ri5mmZD2Ovxw957YA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDl9dFJ76pb280I9x9Y5gQvMdw+U3vvxGBlktZtRRbSkAIgC/mnI6nPkyKbQWRWf8a/NxYPFF3An16466/LMmhf/Fk="}]},"directories":{}},"0.5.0":{"name":"retext","version":"0.5.0","description":"Extensible system for analysing and manipulating natural language","license":"MIT","keywords":["natural","language","parser","analyse","manipulate","nlcst","textom"],"dependencies":{"nlcst-to-textom":"^0.2.0","parse-latin":"^0.4.0","textom":"^0.4.0","ware":"^1.2.0"},"repository":{"type":"git","url":"https://github.com/wooorm/retext.git"},"author":{"name":"Titus Wormer","email":"tituswormer@gmail.com"},"devDependencies":{"eslint":"^0.11.0","istanbul":"^0.3.0","jscs":"^1.0.0","jscs-jsdoc":"^0.4.0","matcha":"^0.6.0","mocha":"^2.0.0"},"scripts":{"test":"_mocha --check-leaks test.js","test-travis":"istanbul cover _mocha --report lcovonly -- --check-leaks test.js","coverage":"istanbul cover _mocha -- --check-leaks test.js","lint-api":"eslint index.js","lint-test":"eslint --env mocha test.js","lint-benchmark":"eslint --global suite,set,bench benchmark.js","lint-style":"jscs --reporter inline index.js test.js benchmark.js","lint":"npm run lint-api && npm run lint-test && npm run lint-benchmark && npm run lint-style","make":"npm run lint && npm run coverage","benchmark":"matcha benchmark.js"},"gitHead":"a0137316b7449b8e42ab977f7007cc36612196f9","bugs":{"url":"https://github.com/wooorm/retext/issues"},"homepage":"https://github.com/wooorm/retext","_id":"retext@0.5.0","_shasum":"05c15b6ba66cc3b653f59aa525c46909667e4f69","_from":".","_npmVersion":"2.0.0","_npmUser":{"name":"wooorm","email":"tituswormer@gmail.com"},"maintainers":[{"name":"wooorm","email":"tituswormer@gmail.com"}],"dist":{"shasum":"05c15b6ba66cc3b653f59aa525c46909667e4f69","tarball":"https://registry.npmjs.org/retext/-/retext-0.5.0.tgz","integrity":"sha512-5tI9gCLwttRHr2NMex1tw7b7WVn342svNClyl3jgij6anfW/0R3myhmMva/UYSW3ORPjJUqArQZaQpgWYuzrQw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIEUrjXsK3Bk9OEEE/4LoNO+19oVPCk+MVDzB16qJbheUAiBRp8Yhe5u6FC9xg5+hVcmRCJYeRNXO1pluHxRfdUkL0g=="}]},"directories":{}},"0.5.1":{"name":"retext","version":"0.5.1","description":"Extensible system for analysing and manipulating natural language","license":"MIT","keywords":["natural","language","parser","analyse","manipulate","nlcst","textom"],"dependencies":{"nlcst-to-textom":"^0.2.0","parse-latin":"^0.4.0","textom":"^0.4.0","ware":"^1.2.0"},"repository":{"type":"git","url":"https://github.com/wooorm/retext.git"},"author":{"name":"Titus Wormer","email":"tituswormer@gmail.com"},"devDependencies":{"browserify":"^8.0.0","eslint":"^0.12.0","esmangle":"^1.0.0","istanbul":"^0.3.0","jscs":"^1.0.0","jscs-jsdoc":"^0.4.0","matcha":"^0.6.0","mocha":"^2.0.0"},"scripts":{"test-api":"_mocha --check-leaks test.js","test-coveralls":"istanbul cover _mocha --report lcovonly -- --check-leaks test.js","test-coverage":"istanbul cover _mocha -- --check-leaks test.js","test-travis":"npm run test-coveralls","test":"npm run test-api","lint-api":"eslint index.js","lint-test":"eslint --env mocha test.js","lint-benchmark":"eslint --global suite,set,bench benchmark.js","lint-style":"jscs --reporter inline index.js test.js benchmark.js","lint":"npm run lint-api && npm run lint-test && npm run lint-benchmark && npm run lint-style","make":"npm run lint && npm run test-coverage","build":"browserify index.js -s Retext > retext.js","postbuild":"esmangle retext.js > retext.min.js","prepublish":"npm run build","benchmark":"matcha benchmark.js"},"gitHead":"d46057469a7712959147218b56788788983fa433","bugs":{"url":"https://github.com/wooorm/retext/issues"},"homepage":"https://github.com/wooorm/retext","_id":"retext@0.5.1","_shasum":"8f987f98512b802124ee412033fbc76e17f59c21","_from":".","_npmVersion":"2.2.0","_nodeVersion":"0.11.15","_npmUser":{"name":"wooorm","email":"tituswormer@gmail.com"},"maintainers":[{"name":"wooorm","email":"tituswormer@gmail.com"}],"dist":{"shasum":"8f987f98512b802124ee412033fbc76e17f59c21","tarball":"https://registry.npmjs.org/retext/-/retext-0.5.1.tgz","integrity":"sha512-zLQcGvu58zSmAJQ4c2Luc52VTxkKIHkj4a3TrnXQfGH5engKAfXoVC9SJVgSJ+YxlY2lt9NFRcDGhybk45RzeQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIFCVejcA4zXDbfSTYd17Pi5PzBhzAoU06iKjoJPiAV1sAiBjbJRAqlGjWxstfmBogf/H/ecu2k8lcppT37/A2YAejg=="}]},"directories":{}},"0.6.0":{"name":"retext","version":"0.6.0","description":"Extensible system for analysing and manipulating natural language","license":"MIT","keywords":["natural","language","parser","analyse","manipulate","nlcst","textom"],"dependencies":{"nlcst-to-textom":"^0.2.0","parse-latin":"^0.5.1","textom":"^0.4.0","ware":"^1.2.0"},"repository":{"type":"git","url":"git+https://github.com/wooorm/retext.git"},"author":{"name":"Titus Wormer","email":"tituswormer@gmail.com"},"files":["index.js"],"devDependencies":{"browserify":"^11.0.0","eslint":"^0.24.0","esmangle":"^1.0.0","istanbul":"^0.3.0","jscs":"^2.0.0","jscs-jsdoc":"^1.0.0","matcha":"^0.6.0","mdast":"^0.28.0","mdast-comment-config":"^0.1.2","mdast-github":"^0.3.2","mdast-lint":"^0.4.2","mdast-slug":"^0.1.1","mdast-validate-links":"^0.3.1","mocha":"^2.0.0"},"scripts":{"test-api":"mocha --check-leaks test.js","test-coverage":"istanbul cover _mocha -- -- test.js","test-travis":"npm run test-coverage","test":"npm run test-api","lint-api":"eslint .","lint-style":"jscs --reporter inline .","lint":"npm run lint-api && npm run lint-style","make":"npm run lint && npm run test-coverage","build-bundle":"browserify index.js -s Retext > retext.js","postbuild-bundle":"esmangle retext.js > retext.min.js","build-md":"mdast . --quiet","build":"npm run build-md && npm run build-bundle","prepublish":"npm run build","benchmark":"matcha benchmark.js"},"gitHead":"2d20a03d789656c7da71d4f6f8646b7062318a7f","bugs":{"url":"https://github.com/wooorm/retext/issues"},"homepage":"https://github.com/wooorm/retext#readme","_id":"retext@0.6.0","_shasum":"65c6b6c052cf480939ba3b48ea69c7163faad70a","_from":".","_npmVersion":"2.11.3","_nodeVersion":"2.3.3","_npmUser":{"name":"wooorm","email":"tituswormer@gmail.com"},"dist":{"shasum":"65c6b6c052cf480939ba3b48ea69c7163faad70a","tarball":"https://registry.npmjs.org/retext/-/retext-0.6.0.tgz","integrity":"sha512-OdqHI0mAYtkdTbxEX14eyzrx5FxPf55KQAQuv/ZxK7UWTGr5xNkNn2Ge03nwCgbu3AA4TsZ7e3ujmHAXO/g1Kw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDfyKtu0XXMH7NnkPmyUZB5B/CuLXtIiyaWxgGzWgto8gIgYqyVWASeXjiXZ6K0qDwD4zpOYnrO0gx8orKR/jTl6kA="}]},"maintainers":[{"name":"wooorm","email":"tituswormer@gmail.com"}],"directories":{}},"1.0.0-rc.1":{"name":"retext","version":"1.0.0-rc.1","description":"Extensible system for analysing and manipulating natural language","license":"MIT","keywords":["natural","language","parser","analyse","manipulate","nlcst"],"dependencies":{"nlcst-to-string":"^0.1.5","parse-latin":"^0.5.1","unified":"^1.0.0"},"repository":{"type":"git","url":"git+https://github.com/wooorm/retext.git"},"author":{"name":"Titus Wormer","email":"tituswormer@gmail.com"},"files":["index.js"],"devDependencies":{"browserify":"^11.0.0","eslint":"^0.24.0","esmangle":"^1.0.0","istanbul":"^0.3.0","jscs":"^2.0.0","jscs-jsdoc":"^1.0.0","matcha":"^0.6.0","mdast":"^0.28.0","mdast-comment-config":"^0.1.2","mdast-github":"^0.3.2","mdast-lint":"^0.4.2","mdast-slug":"^0.1.1","mdast-validate-links":"^0.3.1","mocha":"^2.0.0","nlcst-test":"^0.2.1"},"scripts":{"test-api":"mocha --check-leaks test.js","test-coverage":"istanbul cover _mocha -- -- test.js","test-travis":"npm run test-coverage","test":"npm run test-api","lint-api":"eslint .","lint-style":"jscs --reporter inline .","lint":"npm run lint-api && npm run lint-style","make":"npm run lint && npm run test-coverage","build-bundle":"browserify index.js -s Retext > retext.js","postbuild-bundle":"esmangle retext.js > retext.min.js","build-md":"mdast . --quiet","build":"npm run build-md && npm run build-bundle","prepublish":"npm run build","benchmark":"matcha benchmark.js"},"gitHead":"b23695bb4356198b8d24da385ad2cff254bd5dc9","bugs":{"url":"https://github.com/wooorm/retext/issues"},"homepage":"https://github.com/wooorm/retext#readme","_id":"retext@1.0.0-rc.1","_shasum":"0ef1d2f51ddba692cbc591b93d459434bd8bbe57","_from":".","_npmVersion":"2.11.3","_nodeVersion":"2.3.3","_npmUser":{"name":"wooorm","email":"tituswormer@gmail.com"},"dist":{"shasum":"0ef1d2f51ddba692cbc591b93d459434bd8bbe57","tarball":"https://registry.npmjs.org/retext/-/retext-1.0.0-rc.1.tgz","integrity":"sha512-llMA5l47pcafgPaa55dQPCEWn1aFOFQT+1YUB0GSxUgC/pQZ0lY+TTvSDpKhQ/6V0qznAuLA6QO7TjOO2boPsg==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQC+IfONGJVuLnkdAdFkucLFC5eIpDCyRWh+jBP3p8FroQIgbDeJr2883/6cNTmlts39s63lc5OFhDo8JDky60JRM6U="}]},"maintainers":[{"name":"wooorm","email":"tituswormer@gmail.com"}],"directories":{}},"1.0.0-rc.2":{"name":"retext","version":"1.0.0-rc.2","description":"Extensible system for analysing and manipulating natural language","license":"MIT","keywords":["natural","language","parser","analyse","manipulate","nlcst"],"dependencies":{"nlcst-to-string":"^0.1.5","parse-latin":"^0.5.1","unified":"^1.0.0"},"repository":{"type":"git","url":"git+https://github.com/wooorm/retext.git"},"author":{"name":"Titus Wormer","email":"tituswormer@gmail.com"},"files":["index.js","lib"],"devDependencies":{"browserify":"^11.0.0","eslint":"^0.24.0","esmangle":"^1.0.0","istanbul":"^0.3.0","jscs":"^2.0.0","jscs-jsdoc":"^1.0.0","matcha":"^0.6.0","mdast":"^0.28.0","mdast-comment-config":"^0.1.2","mdast-github":"^0.3.2","mdast-lint":"^0.4.2","mdast-slug":"^0.1.1","mdast-validate-links":"^0.3.1","mocha":"^2.0.0","nlcst-test":"^0.2.1"},"scripts":{"test-api":"mocha --check-leaks test.js","test-coverage":"istanbul cover _mocha -- -- test.js","test-travis":"npm run test-coverage","test":"npm run test-api","lint-api":"eslint .","lint-style":"jscs --reporter inline .","lint":"npm run lint-api && npm run lint-style","make":"npm run lint && npm run test-coverage","build-bundle":"browserify index.js -s Retext > retext.js","postbuild-bundle":"esmangle retext.js > retext.min.js","build-md":"mdast . --quiet","build":"npm run build-md && npm run build-bundle","benchmark":"matcha benchmark.js"},"gitHead":"277a9d4f1242125aa92871a46fd6d262fcc154a6","bugs":{"url":"https://github.com/wooorm/retext/issues"},"homepage":"https://github.com/wooorm/retext#readme","_id":"retext@1.0.0-rc.2","_shasum":"e5b8c6f1c6fdbe826f25b83cf9abd2b4aedf71f9","_from":".","_npmVersion":"2.11.3","_nodeVersion":"2.3.3","_npmUser":{"name":"wooorm","email":"tituswormer@gmail.com"},"dist":{"shasum":"e5b8c6f1c6fdbe826f25b83cf9abd2b4aedf71f9","tarball":"https://registry.npmjs.org/retext/-/retext-1.0.0-rc.2.tgz","integrity":"sha512-1ma+7Gse6F9fyGb4He0H8AQjD5TctoR4CLmAAjqeqiEywaGp9QNOtRpaC894vum7vSIyiFJusysGAJdRDkL+dQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQC4aNlWLBaUeE/AVGWAp3EdMVXps6eH0cpF3M924bBm3AIgDLow2yxMi7bvzdpJ8sCipAXphIhGgvat9FIKekdaa80="}]},"maintainers":[{"name":"wooorm","email":"tituswormer@gmail.com"}],"directories":{}},"1.0.0-rc.3":{"name":"retext","version":"1.0.0-rc.3","description":"Extensible system for analysing and manipulating natural language","license":"MIT","keywords":["natural","language","parser","analyse","manipulate","nlcst"],"dependencies":{"nlcst-to-string":"^0.1.5","parse-latin":"^0.5.1","unified":"^1.0.0"},"repository":{"type":"git","url":"git+https://github.com/wooorm/retext.git"},"author":{"name":"Titus Wormer","email":"tituswormer@gmail.com"},"files":["index.js","lib"],"devDependencies":{"browserify":"^11.0.0","eslint":"^0.24.0","esmangle":"^1.0.0","istanbul":"^0.3.0","jscs":"^2.0.0","jscs-jsdoc":"^1.0.0","matcha":"^0.6.0","mdast":"^0.28.0","mdast-comment-config":"^0.1.2","mdast-github":"^0.3.2","mdast-lint":"^0.4.2","mdast-slug":"^0.1.1","mdast-validate-links":"^0.3.1","mocha":"^2.0.0","nlcst-test":"^0.2.1"},"scripts":{"test-api":"mocha --check-leaks test.js","test-coverage":"istanbul cover _mocha -- -- test.js","test-travis":"npm run test-coverage","test":"npm run test-api","lint-api":"eslint .","lint-style":"jscs --reporter inline .","lint":"npm run lint-api && npm run lint-style","make":"npm run lint && npm run test-coverage","build-bundle":"browserify index.js -s Retext > retext.js","postbuild-bundle":"esmangle retext.js > retext.min.js","build-md":"mdast . --quiet","build":"npm run build-md && npm run build-bundle","benchmark":"matcha benchmark.js"},"gitHead":"122c573b17b223186f55c978e37badeb19fc4de8","bugs":{"url":"https://github.com/wooorm/retext/issues"},"homepage":"https://github.com/wooorm/retext#readme","_id":"retext@1.0.0-rc.3","_shasum":"ceed94e23ca388f48cab8596d9e5c84142d9e4f1","_from":".","_npmVersion":"2.13.2","_nodeVersion":"2.5.0","_npmUser":{"name":"wooorm","email":"tituswormer@gmail.com"},"dist":{"shasum":"ceed94e23ca388f48cab8596d9e5c84142d9e4f1","tarball":"https://registry.npmjs.org/retext/-/retext-1.0.0-rc.3.tgz","integrity":"sha512-OreFak9DjJDQDvnuoJ3MHcdJJPvB1Agf1WvWPbxiAZ1uN3isLcDDBqcdiGNHmMRGyzKZ57XEjfzLLubP9rJ5aw==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIEwSMOhbWCj/OEJPoNTLGlCS7XLj9LSIk2RAqXs7i/ExAiEAiKeNiqzO71Gp/5+tmCroFiwXTzqhUMj/O69oGL4aHgY="}]},"maintainers":[{"name":"wooorm","email":"tituswormer@gmail.com"}],"directories":{}},"1.0.0-rc.4":{"name":"retext","version":"1.0.0-rc.4","description":"Extensible system for analysing and manipulating natural language","license":"MIT","keywords":["natural","language","parser","analyse","manipulate","nlcst"],"dependencies":{"nlcst-to-string":"^1.0.0","parse-latin":"^2.0.0","unified":"^1.0.0"},"repository":{"type":"git","url":"git+https://github.com/wooorm/retext.git"},"author":{"name":"Titus Wormer","email":"tituswormer@gmail.com"},"files":["index.js","lib"],"devDependencies":{"browserify":"^11.0.0","eslint":"^1.0.0","esmangle":"^1.0.0","istanbul":"^0.3.0","jscs":"^2.0.0","jscs-jsdoc":"^1.0.0","matcha":"^0.6.0","mdast":"^1.0.0","mdast-comment-config":"^1.0.0","mdast-github":"^1.0.0","mdast-lint":"^1.0.0","mdast-slug":"^1.0.0","mdast-validate-links":"^1.0.0","mocha":"^2.0.0","nlcst-test":"^0.2.1"},"scripts":{"test-api":"mocha --check-leaks test.js","test-coverage":"istanbul cover _mocha -- -- test.js","test-travis":"npm run test-coverage","test":"npm run test-api","lint-api":"eslint .","lint-style":"jscs --reporter inline .","lint":"npm run lint-api && npm run lint-style","make":"npm run lint && npm run test-coverage","build-bundle":"browserify index.js -s Retext > retext.js","postbuild-bundle":"esmangle retext.js > retext.min.js","build-md":"mdast . --quiet","build":"npm run build-md && npm run build-bundle","benchmark":"matcha benchmark.js"},"gitHead":"4f0f76f406ad7a9eb0dc24925b19f02434ed74aa","bugs":{"url":"https://github.com/wooorm/retext/issues"},"homepage":"https://github.com/wooorm/retext#readme","_id":"retext@1.0.0-rc.4","_shasum":"96a899ceb176f1263144f75653079b48cd74dce3","_from":".","_npmVersion":"2.13.2","_nodeVersion":"2.5.0","_npmUser":{"name":"wooorm","email":"tituswormer@gmail.com"},"dist":{"shasum":"96a899ceb176f1263144f75653079b48cd74dce3","tarball":"https://registry.npmjs.org/retext/-/retext-1.0.0-rc.4.tgz","integrity":"sha512-S6b+r0PddtwD5PI9IrLYDbP2f/qPMXVydCcYke3g0NZnxC2mFbZfFowz8JzMH1R0nho/sDHAU0tX/H/BJqhxKA==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDueidfG3aaDOeVy/bUhKbJF5pzpjQywA9N7MSoOhTR6gIgR/IF0ngujLNjy+3ij5pjJe6raEWBUegdkIAMn77APbQ="}]},"maintainers":[{"name":"wooorm","email":"tituswormer@gmail.com"}],"directories":{}},"1.0.0":{"name":"retext","version":"1.0.0","description":"Extensible system for analysing and manipulating natural language","license":"MIT","keywords":["natural","language","parser","analyse","manipulate","nlcst"],"dependencies":{"nlcst-to-string":"^1.0.0","parse-latin":"^2.0.0","unified":"^2.0.0"},"repository":{"type":"git","url":"git+https://github.com/wooorm/retext.git"},"author":{"name":"Titus Wormer","email":"tituswormer@gmail.com"},"files":["index.js","lib"],"devDependencies":{"browserify":"^11.0.0","eslint":"^1.0.0","esmangle":"^1.0.0","istanbul":"^0.3.0","jscs":"^2.0.0","jscs-jsdoc":"^1.0.0","mdast":"^1.0.0","mdast-comment-config":"^1.0.0","mdast-github":"^1.0.0","mdast-lint":"^1.0.0","mdast-slug":"^2.0.0","mdast-validate-links":"^1.0.0","mocha":"^2.0.0","nlcst-test":"^0.2.1"},"scripts":{"test-api":"mocha --check-leaks test.js","test-coverage":"istanbul cover _mocha -- -- test.js","test-travis":"npm run test-coverage","test":"npm run test-api","lint-api":"eslint .","lint-style":"jscs --reporter inline .","lint":"npm run lint-api && npm run lint-style","make":"npm run lint && npm run test-coverage","build-bundle":"browserify index.js -s Retext > retext.js","postbuild-bundle":"esmangle retext.js > retext.min.js","build-md":"mdast . --quiet","build":"npm run build-md && npm run build-bundle"},"gitHead":"73181b5baea768b0c7ae5c868ea2b0f3f85bdf67","bugs":{"url":"https://github.com/wooorm/retext/issues"},"homepage":"https://github.com/wooorm/retext#readme","_id":"retext@1.0.0","_shasum":"31e81d7f2bf745b2ae3d3a6d7b7cb1fcd89f0224","_from":".","_npmVersion":"2.14.2","_nodeVersion":"4.0.0","_npmUser":{"name":"wooorm","email":"tituswormer@gmail.com"},"dist":{"shasum":"31e81d7f2bf745b2ae3d3a6d7b7cb1fcd89f0224","tarball":"https://registry.npmjs.org/retext/-/retext-1.0.0.tgz","integrity":"sha512-W4UJtwcC2Ufg7vWFIGNx24TYgYQhlBTLcXJLRME+uJGBEecLftLBu7JSvskfyiExwXRBxYAayFLHjZRIK2HivQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQC30wLoDxGsaZEegE53/rKDJYAKY8tIegXpu15WsPgaVAIgPRauehRvqP4DSaw4LbEhloIBCPvRDkl9dU5blkAb6qo="}]},"maintainers":[{"name":"wooorm","email":"tituswormer@gmail.com"}],"directories":{}},"2.0.0":{"name":"retext","version":"2.0.0","description":"Extensible system for analysing and manipulating natural language","license":"MIT","keywords":["natural","language","parser","analyse","manipulate","nlcst"],"dependencies":{"nlcst-to-string":"^1.0.0","parse-latin":"^3.0.0","unified":"^3.0.0"},"repository":{"type":"git","url":"git+https://github.com/wooorm/retext.git"},"bugs":{"url":"https://github.com/wooorm/retext/issues"},"author":{"name":"Titus Wormer","email":"tituswormer@gmail.com","url":"http://wooorm.com"},"contributors":[{"name":"Titus Wormer","email":"tituswormer@gmail.com","url":"http://wooorm.com"},{"name":"Blake Embrey","email":"hello@blakeembrey.com","url":"http://blakeembrey.me"}],"files":["index.js","lib"],"devDependencies":{"browserify":"^13.0.0","eslint":"^2.0.0","esmangle":"^1.0.0","istanbul":"^0.4.0","jscs":"^2.0.0","jscs-jsdoc":"^1.0.0","nlcst-test":"^0.2.1","remark":"^4.0.0","remark-comment-config":"^3.0.0","remark-github":"^4.0.1","remark-lint":"^3.0.0","remark-validate-links":"^3.0.0","tape":"^4.4.0"},"scripts":{"build-md":"remark . --quiet --frail","build-bundle":"browserify index.js -s Retext > retext.js","build-mangle":"esmangle retext.js > retext.min.js","build":"npm run build-md && npm run build-bundle && npm run build-mangle","lint-api":"eslint .","lint-style":"jscs --reporter inline .","lint":"npm run lint-api && npm run lint-style","test-api":"node test.js","test-coverage":"istanbul cover test.js","test":"npm run build && npm run lint && npm run test-coverage"},"gitHead":"8e407808383a40722151d74ec42695e2517cd3d8","homepage":"https://github.com/wooorm/retext#readme","_id":"retext@2.0.0","_shasum":"6b94f51ea97afc2e3fe2f566bd21bae8bd4ba316","_from":".","_npmVersion":"3.3.6","_nodeVersion":"5.0.0","_npmUser":{"name":"wooorm","email":"tituswormer@gmail.com"},"dist":{"shasum":"6b94f51ea97afc2e3fe2f566bd21bae8bd4ba316","tarball":"https://registry.npmjs.org/retext/-/retext-2.0.0.tgz","integrity":"sha512-fmerGvHXlKmxD9/neScXKzA1vvskbYLseUyDqVPCkfgYVdFbUsTtGxR3rPPCk8b3K4wOSPbky84MKr5lf5+OMQ==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIAZeeQKViQiWHARiw3nvfMStezMzDmKLNuN7pXbv352wAiEAgG5RzYC/ggSBUD3b7VjaFaeEI0Gw68sS6tTWpYQ9ZXs="}]},"maintainers":[{"name":"wooorm","email":"tituswormer@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/retext-2.0.0.tgz_1456925497572_0.07095903856679797"},"directories":{}},"3.0.0":{"name":"retext","version":"3.0.0","description":"Natural language processor powered by plugins","license":"MIT","keywords":["natural","language","concrete","syntax","tree","cst","parse","stringify","process"],"dependencies":{"retext-latin":"^1.0.0","retext-stringify":"^1.0.0","unified":"^4.1.1"},"homepage":"https://github.com/wooorm/retext","repository":{"type":"git","url":"https://github.com/wooorm/retext/tree/master/packages/retext"},"bugs":{"url":"https://github.com/wooorm/retext/issues"},"author":{"name":"Titus Wormer","email":"tituswormer@gmail.com","url":"http://wooorm.com"},"contributors":[{"name":"Titus Wormer","email":"tituswormer@gmail.com","url":"http://wooorm.com"}],"engines":{"node":">=0.11.0"},"files":["index.js"],"scripts":{},"_id":"retext@3.0.0","_shasum":"aa4c73611bc55823ce6f3912fa86069980807190","_from":".","_npmVersion":"3.7.3","_nodeVersion":"5.9.1","_npmUser":{"name":"wooorm","email":"tituswormer@gmail.com"},"dist":{"shasum":"aa4c73611bc55823ce6f3912fa86069980807190","tarball":"https://registry.npmjs.org/retext/-/retext-3.0.0.tgz","integrity":"sha512-84pIXfHo7HHZRf/i2JM8VEMtAAQS1FSfOY96MNUwe+hQdn/JPvRhwGXuAbUHoqFkJqge2u3EU4PCBj3wJhZi9w==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCDTaJJkSK78bZih8lijnU72lfZstEJJT1lTleHGl0/DAIhAKgvjza5OQpGBb4ATHc4FRmoOo8TRGN4p8d+sy9yK5l2"}]},"maintainers":[{"name":"wooorm","email":"tituswormer@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/retext-3.0.0.tgz_1466590516588_0.21784819290041924"},"directories":{}},"4.0.0":{"name":"retext","version":"4.0.0","description":"Natural language processor powered by plugins","license":"MIT","keywords":["natural","language","concrete","syntax","tree","cst","parse","stringify","process"],"dependencies":{"retext-latin":"^1.0.0","retext-stringify":"^1.0.0","unified":"^5.0.0"},"homepage":"https://github.com/wooorm/retext","repository":{"type":"git","url":"https://github.com/wooorm/retext/tree/master/packages/retext"},"bugs":{"url":"https://github.com/wooorm/retext/issues"},"author":{"name":"Titus Wormer","email":"tituswormer@gmail.com","url":"http://wooorm.com"},"contributors":[{"name":"Titus Wormer","email":"tituswormer@gmail.com","url":"http://wooorm.com"}],"engines":{"node":">=0.11.0"},"files":["index.js"],"scripts":{},"_id":"retext@4.0.0","_shasum":"db12d45fe758530175f779176a112f5f73d22638","_from":".","_npmVersion":"3.10.6","_nodeVersion":"6.3.0","_npmUser":{"name":"wooorm","email":"tituswormer@gmail.com"},"dist":{"shasum":"db12d45fe758530175f779176a112f5f73d22638","tarball":"https://registry.npmjs.org/retext/-/retext-4.0.0.tgz","integrity":"sha512-BfsOvCJXORI07AkY59Pw5T+iI8Ehc0umSQrdsTD0JKfpn3hpjvWzYjghXB327yEKmNsTEWl2BGwN5AyTSp9p+A==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCICBDF657hCmJm4yyvTFeRyLMKPNJXBV6RMhjNC41OCyIAiBj4Qk5xsCkE7lues6XQTxcoxoumBVFu3xq9siT+7lvEw=="}]},"maintainers":[{"name":"wooorm","email":"tituswormer@gmail.com"}],"_npmOperationalInternal":{"host":"packages-12-west.internal.npmjs.com","tmp":"tmp/retext-4.0.0.tgz_1473260114909_0.3901931366417557"},"directories":{}},"5.0.0":{"name":"retext","version":"5.0.0","description":"Natural language processor powered by plugins","license":"MIT","keywords":["natural","language","concrete","syntax","tree","cst","parse","stringify","process"],"dependencies":{"retext-latin":"^2.0.0","retext-stringify":"^2.0.0","unified":"^6.0.0"},"homepage":"https://github.com/wooorm/retext","repository":{"type":"git","url":"https://github.com/wooorm/retext/tree/master/packages/retext"},"bugs":{"url":"https://github.com/wooorm/retext/issues"},"author":{"name":"Titus Wormer","email":"tituswormer@gmail.com","url":"http://wooorm.com"},"contributors":[{"name":"Titus Wormer","email":"tituswormer@gmail.com","url":"http://wooorm.com"}],"engines":{"node":">=0.11.0"},"files":["index.js"],"scripts":{},"_id":"retext@5.0.0","_shasum":"5d9018c4a677d6103c142362d76f50eb1d398bf6","_from":".","_npmVersion":"4.0.3","_nodeVersion":"7.0.0","_npmUser":{"name":"wooorm","email":"tituswormer@gmail.com"},"dist":{"shasum":"5d9018c4a677d6103c142362d76f50eb1d398bf6","tarball":"https://registry.npmjs.org/retext/-/retext-5.0.0.tgz","integrity":"sha512-goe2axhhUtaEp+BNRP9/Yrg4u+0NmNUnAsZtJZh/Xqg+Ncem+dDCmw5roY7Hvka1MOGlfVu6VVMDYf3YGYcbew==","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIDbvGx7kAP3JlZ1mOe674RhUm0ZF5XoCOVEJBlBo4HlCAiAp729PDN9rOkNPA4oU/6HkLgk8uMTHboE2vfOIm+7OUg=="}]},"maintainers":[{"name":"wooorm","email":"tituswormer@gmail.com"}],"_npmOperationalInternal":{"host":"packages-18-east.internal.npmjs.com","tmp":"tmp/retext-5.0.0.tgz_1487867439556_0.04460432752966881"},"directories":{}},"6.0.0":{"name":"retext","version":"6.0.0","description":"Natural language processor powered by plugins","license":"MIT","keywords":["natural","language","concrete","syntax","tree","cst","parse","stringify","process"],"dependencies":{"retext-latin":"^2.0.0","retext-stringify":"^2.0.0","unified":"^7.0.0"},"homepage":"https://github.com/retextjs/retext","repository":{"type":"git","url":"https://github.com/retextjs/retext/tree/master/packages/retext"},"bugs":{"url":"https://github.com/retextjs/retext/issues"},"author":{"name":"Titus Wormer","email":"tituswormer@gmail.com","url":"https://wooorm.com"},"contributors":[{"name":"Titus Wormer","email":"tituswormer@gmail.com","url":"https://wooorm.com"}],"scripts":{},"_id":"retext@6.0.0","_npmVersion":"6.4.1","_nodeVersion":"11.0.0","_npmUser":{"name":"wooorm","email":"tituswormer@gmail.com"},"dist":{"integrity":"sha512-Ep15A39q/DPoxXfIHz3XkT3Ji0hc5CmSCjH0NMGoOZQY4qNY4uUPNSxE/Z/jL/lLN6uk/Ca/D0pwmby++2lRHA==","shasum":"93e89df7e071dc87a51aa256c77cf3684b7d0c66","tarball":"https://registry.npmjs.org/retext/-/retext-6.0.0.tgz","fileCount":3,"unpackedSize":3554,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb4cfZCRA9TVsSAnZWagAAd7YP/0Ro4EJxocDXC8Klu24Z\nGl793AdSPLYtEW1k4PY8xqM9VGsyuqRAspER1NfP1i4Au2ptiuQ3cvCHsUoo\nK0OxprlT3vhnbrEme1JHlJ97hRYFMUYNWQ6InJVd2Na0s8KTzUn88A14mHH4\n42gukIg5w72r1HrQMQ0IGR6QxNXb3i6MN+kFwBthl3wY+9G2ZDteFTZ39IW7\nvaSTG8tvBRSw9w4nLl/M/Wv3JGmSmcHCDvRFFIzYWAFeVhzuiSdj0hGbea5I\nVHQkKgJdrBeEAaKMSkog1t8vrveeF995RYX9KQwcr+oN2w63zaLE5+R77M4W\nq6p82GtdRH55rlGl1SfMS84z1HO5afToiiASH4W2+gFxNTQ8wlCKrBPxtryI\n5KyM0NP7fMEAEsiXkG07fXp5IqH6zwRZqH7Elq+aGlc2lQRKadTQPKxlusmX\nPjPam+GWXvS1E6OxSYi9HdSYcf/4hOUzo12G4JNYPMS0wU+uyLShWBzrFNxp\nkaQkdcq/FYbZHhGx9VOQtaWbN02zh4RZo58qRG2BpuYj9Z+XtLZg0Xt05vRE\nbE2Yd91sczKMqRP2ZKw386AoUfYCC+5EZuhOkStlOZJReqNYVavMm0IfT26C\nc7ZWA5yHvTl71laR+ESee69ckuFZdo7TX19K0A1/KleOe6rTutghAPI97raV\nmMjE\r\n=dnhY\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQDbe/2KkWNGT42OhsH5NnXYoeSqisg/dt4wsL2690lZ6gIgKSV87BihjI7wo1bX77+667MeGVlcKYxl0qJHaNhlrjc="}]},"maintainers":[{"name":"wooorm","email":"tituswormer@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/retext_6.0.0_1541523416617_0.6318266515528563"},"_hasShrinkwrap":false},"6.0.1":{"name":"retext","version":"6.0.1","description":"Natural language processor powered by plugins","license":"MIT","keywords":["natural","language","concrete","syntax","tree","cst","parse","stringify","process"],"dependencies":{"retext-latin":"^2.0.0","retext-stringify":"^2.0.0","unified":"^7.0.0"},"homepage":"https://github.com/retextjs/retext","repository":{"type":"git","url":"https://github.com/retextjs/retext/tree/master/packages/retext"},"bugs":{"url":"https://github.com/retextjs/retext/issues"},"author":{"name":"Titus Wormer","email":"tituswormer@gmail.com","url":"https://wooorm.com"},"contributors":[{"name":"Titus Wormer","email":"tituswormer@gmail.com","url":"https://wooorm.com"}],"scripts":{},"_id":"retext@6.0.1","_npmVersion":"6.4.1","_nodeVersion":"11.0.0","_npmUser":{"name":"wooorm","email":"tituswormer@gmail.com"},"dist":{"integrity":"sha512-+AdE0+PxijN3jswdMlg0xJHb3cBKCeNJ+a+k+leB6mE6q7X2wSG3IPkCFiaghrsV5vL0a2h2XmTazsqyIRAFTw==","shasum":"290bd152696011da4f8b1aa2e532b7ee1204569f","tarball":"https://registry.npmjs.org/retext/-/retext-6.0.1.tgz","fileCount":3,"unpackedSize":4966,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJb7/sJCRA9TVsSAnZWagAAltEP/ijrj5y+n7NNZJI4cq9t\nkNrmIFqb0VZ7jPe3ssYz224DtqTaYwq8EfNXGf4FEdiCtQN2xV2L/IhLSYfG\n9IP0nw6KMIUTMYdkuoBIXr2n/RgddoffSzD9z4J5/DSnmcG7R3uWvIOOEREC\nhh/Qn7kg3kdLR6x72wv45I7nBjfzJbmiVnQmF17WV4dwclhWVNP8WTPbj+ZV\nzBH0/ojXhesXoR0/a45yKNET3yG/8pelj7Y1uodqysHho4fsbW0W8VtrUb3z\nW2M99JktorTJWOzeXX9fdIK/IR9cHjZxzpDBzDJNFABQU8PpowSkjJgeApwZ\n838pOkAkVUmHNhQTyOOH0qNG/lbRgOdsM6VKiU+SXMTc3TRpeCq4BaQVn7Zm\njjCK35TVb298J8kd4TVvKEJdvaDj1rFkeKOMCY3b5Ovq3BxgeYWTmkvfC2Zz\nxdRDTa9IaFeOowmm1XfDp0Fd8efmKGK/LBhZg/SeE7Yf45FOoBTOcKzQ+v3l\n/9WddFaDpN36eOjyAvccagH8n+U7kOEqQhUa+I1i26jhpMCLeeQeRPAoBuUg\nHdoW3gvnKiZd4aXGQfjUZ9/lYxoHhR6eHjAEZXpB33X+S3kqh3NJBxNvKVOa\nP7/1M10DJhZ5zylyU0GZ4IGr0HmnHZJGDhCaJS28BhyluivGFoqx+40rAoHk\njZGH\r\n=/kkK\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIAuk7HreIQpNYqst1CnyJE6KTMQmq44aiGtu4HEkNSF/AiBSBErwtQ2pxLwRrNYvQsu2Fq/pFfBoChvGUE/V3AKB/A=="}]},"maintainers":[{"name":"wooorm","email":"tituswormer@gmail.com"}],"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/retext_6.0.1_1542454025128_0.5353756963341167"},"_hasShrinkwrap":false},"6.0.2":{"name":"retext","version":"6.0.2","description":"Natural language processor powered by plugins","license":"MIT","keywords":["natural","language","concrete","syntax","tree","cst","parse","stringify","process"],"dependencies":{"retext-latin":"^2.0.0","retext-stringify":"^2.0.0","unified":"^7.0.0"},"homepage":"https://github.com/retextjs/retext","repository":{"type":"git","url":"https://github.com/retextjs/retext/tree/master/packages/retext"},"bugs":{"url":"https://github.com/retextjs/retext/issues"},"author":{"name":"Titus Wormer","email":"tituswormer@gmail.com","url":"https://wooorm.com"},"contributors":[{"name":"Titus Wormer","email":"tituswormer@gmail.com","url":"https://wooorm.com"}],"scripts":{},"_id":"retext@6.0.2","_nodeVersion":"12.2.0","_npmVersion":"6.9.0","dist":{"integrity":"sha512-CxpBywVxRjzikCRrC6Z87KzqzuSbCDLLqpQSzjzE0xlzPaZemZiywCHEzX7eSWRdXY5006rYgD7Zm4BCyzFxvg==","shasum":"005df1c83bdd6a238f98cd60899f4c140f67b26a","tarball":"https://registry.npmjs.org/retext/-/retext-6.0.2.tgz","fileCount":3,"unpackedSize":5978,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJc98fSCRA9TVsSAnZWagAAYfIQAKLiHUUwPahtdCrBeL7Y\nXL6AoyOTwYr4eRNOe7JVyvVDWZaSeAEygJqaYH4gUK1IjWAbb0Kdd4iyfrnI\nu48Be9rpcpGhFoxGcd8dfNHktzrmryTjD3c3OvA/X+P+meGNJkX0Iwn2DxtY\nCp4Leq9pKKzVLnXCxCl6JaX4oNPBgnjaneDqhimDu2n16QPREAOG0cTmXNE3\n6FISOsHLqIVpf2pMsh8/0vv8UL9bswWIWP5cobr66vV7mp7GP9FvI9YzbuAU\no0SkSYVOz0WuOou6rtW1LUxJ7tTEQYszjj6KTcC9tjz0bTCW2aYk0BfhazkU\nm9vmjY8vWiTe6FV9jf4jSHKUTQCKydaAv35mGF/WqZfVFm7xn4ZUfvUDUHiu\nKW9N4FmmZAEW9ILrg+S9gpfzSOZfAvorCvC80MEtOYj7AuDc7fFjZs+5npUC\nyFrVmjON0Er8LBd4p3KjrlbcSzLfIggbfwNC/ghDWI1cEw1YLWDc04U36xtR\nT1+IKCxVhgw1egIdek/6cXY1G7gyj5Rn50Lk2TPR094kP+eHgvODUabw1s6H\nfSQcwJILC6zhYWVUVrO8n7OKuXY8tppCrKrKTcXnj5gP77g2eq9RBG6jYPSX\nnBYTrgavWyjS4LZ8vQR0Wt+H6InsE4ZOq6UI18t0DR0pbgq+qkTQj+Cm8GEB\naLUj\r\n=r3CN\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIHYvJK6xRduCdYLRiHEUTEGnlTSeevIa0O2/mie4ZnGeAiBEUMyKZjXLUraazwEjabT/V0vuwylSlRjvp8FY1fHNJw=="}]},"maintainers":[{"name":"wooorm","email":"tituswormer@gmail.com"}],"_npmUser":{"name":"wooorm","email":"tituswormer@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/retext_6.0.2_1559742417232_0.5755057989240802"},"_hasShrinkwrap":false},"7.0.0":{"name":"retext","version":"7.0.0","description":"Natural language processor powered by plugins","license":"MIT","keywords":["natural","language","concrete","syntax","tree","cst","parse","stringify","process"],"dependencies":{"retext-latin":"^2.0.0","retext-stringify":"^2.0.0","unified":"^8.0.0"},"homepage":"https://github.com/retextjs/retext","repository":{"type":"git","url":"https://github.com/retextjs/retext/tree/master/packages/retext"},"bugs":{"url":"https://github.com/retextjs/retext/issues"},"author":{"name":"Titus Wormer","email":"tituswormer@gmail.com","url":"https://wooorm.com"},"contributors":[{"name":"Titus Wormer","email":"tituswormer@gmail.com","url":"https://wooorm.com"}],"scripts":{},"_id":"retext@7.0.0","_nodeVersion":"12.2.0","_npmVersion":"6.9.2","dist":{"integrity":"sha512-y5R2Re5mtsmy9GGtsluTUFGhxbN0UIUqvuBsD6mFw+pviSTAiCCOZbvr4mT97BYe/Y2yvbvZKea3GxpFnubZnw==","shasum":"9ad410b40ccdd3e6277127f6292011fb3748f8c7","tarball":"https://registry.npmjs.org/retext/-/retext-7.0.0.tgz","fileCount":3,"unpackedSize":5978,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdGhHFCRA9TVsSAnZWagAAQLcP/jnAwRdymY7Ly0EiDCfH\nO/3zKmgwG//vzBSAgStIWZccDWor2wsGBvnC77wx/UVvzScDOYqx4YD6fmWV\nT2xwl/24PIojO/GOcsMvqDIxVcoBB5UAijkM8fXKCNAbP/mpp7/wMlOXFO6i\n5tIyMx0pLCBACOjpDP+bPmVtpy7tO3SZU0Q5MedL6y55z7aQJRiW640orE5R\nYVxg+HlXYSDXqQWD68K52T31ZULxp0Iw+ZumwLmJLn9OrpXre+AwN2QTA5Yz\nzRDACg5HsGf7EUluCaX5S6fcbKoe/UmNLZwDopWxsq7vj9Aj+MnnP3RzSYbM\n/J5+zjtRBNTku1BBqTfgCDdtOHd85zC/uzTUNZEHM9ApkTbpLtt+Kav7Trrz\ndjBZZCbTeEd1i7MGeiMsZfoZHzfeaVCHeZNDhLDdLV1gQ+FkGXU1PGDh/1BM\nzEGcOkK1YsOQ6a/aUkRtlsnhNExDtHZ6ANuUsPsK4bwlPIppK+ZxW8JLkn3w\nPWvymyH4v/GipwMWx4iC2q4w5JrU8r43I4ZrvQU/6heh5KatG+MaHL1/bdES\nGb2llWn3Cc8BeVHiT726NdpkWOHOfBTLU+BAvY1t+29D/t3Hez7lbRJIrRwa\nhPKNNO2HtJ962LiNDQGzsKl+S9jobVWXPChWGTU+4AWyUY7O8gRLoLZy2Om3\nRkfe\r\n=Pewh\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQDLSElW7g5erphV9e1vCAecIM8p+16mR/oNjZUcwQMJCwIhANlneF4IHOmxKo501Tiw5JIfBvTff5lyh1/2mosWIQIe"}]},"maintainers":[{"name":"wooorm","email":"tituswormer@gmail.com"}],"_npmUser":{"name":"wooorm","email":"tituswormer@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/retext_7.0.0_1561989573136_0.03502739241621611"},"_hasShrinkwrap":false},"7.0.1":{"name":"retext","version":"7.0.1","description":"Natural language processor powered by plugins","license":"MIT","keywords":["natural","language","concrete","syntax","tree","cst","parse","stringify","process"],"dependencies":{"retext-latin":"^2.0.0","retext-stringify":"^2.0.0","unified":"^8.0.0"},"homepage":"https://github.com/retextjs/retext","repository":{"type":"git","url":"https://github.com/retextjs/retext/tree/master/packages/retext"},"bugs":{"url":"https://github.com/retextjs/retext/issues"},"funding":{"type":"opencollective","url":"https://opencollective.com/unified"},"author":{"name":"Titus Wormer","email":"tituswormer@gmail.com","url":"https://wooorm.com"},"contributors":[{"name":"Titus Wormer","email":"tituswormer@gmail.com","url":"https://wooorm.com"}],"scripts":{},"_id":"retext@7.0.1","_nodeVersion":"13.0.1","_npmVersion":"6.13.0","dist":{"integrity":"sha512-N0IaEDkvUjqyfn3/gwxVfI51IxfGzOiVXqPLWnKeCDbiQdxSg0zebzHPxXWnL7TeplAJ+RE4uqrXyYN//s9HjQ==","shasum":"04b7965ab78fe6e5e3a489304545b460d41bf5aa","tarball":"https://registry.npmjs.org/retext/-/retext-7.0.1.tgz","fileCount":3,"unpackedSize":6081,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.4\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJdxxrgCRA9TVsSAnZWagAAczwP+wQzB3EvJWURIGHEhrYY\nvgpDf8T3VU1FsvW9bVhNBb11d/EK+8Y2fdCD9H3G+XNmKQK+mnQxuEtrEXGv\n527lXlv54UeiJXwMUuuR27+jF8lsz7ilY1XHDm+zLzqN3nqYyhtm0seUtYim\n50NyTHx7NE02RERECAQ8usQmbr08UJpEI84btFgGLtAsEQtmzoOZy+FHaGOT\n3WuSS2GP0fmRK91w7a4g4fruaAa9jopz7ELGrlCBk2LeeOtthFahap7l4x9w\nQAPv+aKxEAaGi9S175Wmfj+bFUxjcdA9+A+yOn1jqF0tVfr5g7ItzGy6VQNk\nBW/uG/h2aRkJPDnWdNcxTUE+24HpWG1A5o2+YEO3XY12dQPjd36tZIlD+y8w\nbUZ7ap/gxB5LW3esbZrVR+EE0fUUvgbbf/nVW5/Yiq8nuDOgpo+katdwYrep\nut5pOYZdecrjtrjSzpZs1cv289qK0mrRgOdLegOqLuu5b5/ABEoILLIrhuNt\nrDYCJdLxcEhNt6WQX6mGCVaou1mPASsKylTdQcIbWOJBwtQstRxAZ0dTplxd\nDsNMsYoJTmVFixh5pXZqKWCg32r8D9GTlBQqHCNDyV1Y4KfjsLTa1GTYZNbT\nscq3yx1P32OYxWGrhvmaYf7S7VEnwa15MDz2R1HO3s2QXW44c0F0jF4k58lH\nG+9K\r\n=oSDm\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCnsNIpjrstXKZGtGOnppaCFSLRiD/lfTMtPlsRE5ElLgIhAJwppeOHp8C4Pxq2y00x7h6YzvYs9QrSYrGOdoz44zDd"}]},"maintainers":[{"name":"wooorm","email":"tituswormer@gmail.com"}],"_npmUser":{"name":"wooorm","email":"tituswormer@gmail.com"},"directories":{},"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/retext_7.0.1_1573329632361_0.06592408741931255"},"_hasShrinkwrap":false},"8.0.0":{"name":"retext","version":"8.0.0","description":"natural language processor powered by plugins part of the unified collective","license":"MIT","keywords":["unified","retext","natural","language","concrete","syntax","tree","cst","parse","stringify","process"],"homepage":"https://github.com/retextjs/retext","repository":{"type":"git","url":"git+https://github.com/retextjs/retext.git#main"},"bugs":{"url":"https://github.com/retextjs/retext/issues"},"funding":{"type":"opencollective","url":"https://opencollective.com/unified"},"author":{"name":"Titus Wormer","email":"tituswormer@gmail.com","url":"https://wooorm.com"},"contributors":[{"name":"Titus Wormer","email":"tituswormer@gmail.com","url":"https://wooorm.com"}],"sideEffects":false,"type":"module","main":"index.js","types":"index.d.ts","dependencies":{"retext-latin":"^3.0.0","retext-stringify":"^3.0.0","unified":"^10.0.0"},"scripts":{"build":"rimraf \"*.d.ts\" && tsc && type-coverage"},"xo":false,"typeCoverage":{"atLeast":100,"detail":true,"strict":true,"ignoreCatch":true},"_id":"retext@8.0.0","_nodeVersion":"16.2.0","_npmVersion":"7.18.1","dist":{"integrity":"sha512-jmaNtmEtmuDC3KJxr1+/ubGuwv26SpeLnnfhyLBPu074HGKJ3UmDhLb22sWW+EYWCozrDAJ2D9dDZ6dEyrqIZA==","shasum":"5d7127b0b0505e2907179255e7e406fb61689f64","tarball":"https://registry.npmjs.org/retext/-/retext-8.0.0.tgz","fileCount":4,"unpackedSize":7072,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJg8VLbCRA9TVsSAnZWagAAjPcP/Akot1FRXURxdymxEWw9\n8LTxY3gbsYdPcs7zwjoqNvOpG1qcdm9Zhx9uJgEaTk5QtgSH+GAypfBxUato\n6cCBOImJthglMKIyf3ZeKWVuLMdbi46MDjSneEHCW7pUaDs9eJEuSp4Y4eIG\nlytL+RJIxOevoFq4yLhGRz5dJ5ZqzG6C3WqXRx4YUl+KDOWsq/GqcZIP/09c\nzVfmHw1wGZo0o+o6C2n39DFnZBNp73Vk310NCV3cK8GWFozm7DXE/VXOiZup\n3NwUeQnZDfdsMPBh4af1vWs34pbjrI17we3Wr9DW0kAG2oqLzhyVjNCKi//X\nK9icBzJtYCfFU/E/Qli+64EwPuuhf3EubFo4KR6eZ2mjdXptNT+F3420RWTD\n74AqbOja6Q3Te7ZzaGGIfwuwMAfcEvCkTLqDb9zM5ZVfAgYGmdHWcAU18NFF\n+yKoHbPsJe6hdU/3g2VH0Fhc5hPuPvIXEad4oyiB+5mZONgomJGDHmAyOGEL\n/XyvPxZtdOaoDG4f4XfL3PcUGYweyDl8jYkANF3ua2xDvTsWwqCclkHvpFMH\nB4yno7i+eH969mjeuIOw/ji2rD1H3catzU1nI+K9CwpLGr9QyjjqrUMkMUIq\n58hVuJCHG4XfX5VwpN8aaXlYaDdVtzM+TCsfmNiS/3151HUeQqAiD49glvqb\nIv3H\r\n=PoFr\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEYCIQCdIjMMElXH68OZ6f4BNJb51OFafI4mZtkwkN/U4FltIAIhAKu7dmR1R5NT1Vjq3iu72A12YNaq+P4S1+YImPX7Bb6l"}]},"_npmUser":{"name":"wooorm","email":"tituswormer@gmail.com"},"directories":{},"maintainers":[{"name":"wooorm","email":"tituswormer@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/retext_8.0.0_1626428123580_0.04326072299184913"},"_hasShrinkwrap":false},"8.1.0":{"name":"retext","version":"8.1.0","description":"natural language processor powered by plugins part of the unified collective","license":"MIT","keywords":["unified","retext","natural","language","concrete","syntax","tree","cst","parse","stringify","process"],"homepage":"https://github.com/retextjs/retext","repository":{"type":"git","url":"git+https://github.com/retextjs/retext.git#main"},"bugs":{"url":"https://github.com/retextjs/retext/issues"},"funding":{"type":"opencollective","url":"https://opencollective.com/unified"},"author":{"name":"Titus Wormer","email":"tituswormer@gmail.com","url":"https://wooorm.com"},"contributors":[{"name":"Titus Wormer","email":"tituswormer@gmail.com","url":"https://wooorm.com"}],"sideEffects":false,"type":"module","main":"index.js","types":"index.d.ts","dependencies":{"@types/nlcst":"^1.0.0","retext-latin":"^3.0.0","retext-stringify":"^3.0.0","unified":"^10.0.0"},"scripts":{"build":"rimraf \"*.d.ts\" && tsc && type-coverage"},"xo":false,"typeCoverage":{"atLeast":100,"detail":true,"strict":true,"ignoreCatch":true},"_id":"retext@8.1.0","_nodeVersion":"16.6.1","_npmVersion":"7.20.6","dist":{"integrity":"sha512-N9/Kq7YTn6ZpzfiGW45WfEGJqFf1IM1q8OsRa1CGzIebCJBNCANDRmOrholiDRGKo/We7ofKR4SEvcGAWEMD3Q==","shasum":"c43437fb84cd46285ad240a9279142e239bada8d","tarball":"https://registry.npmjs.org/retext/-/retext-8.1.0.tgz","fileCount":4,"unpackedSize":7186,"npm-signature":"-----BEGIN PGP SIGNATURE-----\r\nVersion: OpenPGP.js v3.0.13\r\nComment: https://openpgpjs.org\r\n\r\nwsFcBAEBCAAQBQJhKONICRA9TVsSAnZWagAAeZQP/34sM2p/uDVfTNelkVGz\nGTisCiIIPlLtUlM7t0TaLPI4HbaEZpNuwwnnZrlNffInw/gqJNWHfoI6ad3C\nqm/zf/GaDYel0ZvCPhZP5iyBgbfyMjwFciQqeIwGaR/IhLEvo0xuoTG/ugux\nHXnhZDtTbnjvhBoWZc3HjLfNHDL0P+nXlHXAHFAeJYT289/IP3Y+y3uhTG82\n6wUlxlP7AZQmXVwel07VxOl15CHtf+x2rg7e4JRtnOrxX0QvxxPZ/z3t/Y/k\nUC4/EsZmCc3e+VMxLEIcUsNAAssLT49I+wtuPZ86Hl4pNXw2pGLQ9lEhiewb\na0YLsH+3KRvbtuDMR4l8T4D4dBNVI+OelAFtr2DnplOEqDn/96xlEMkdE1Sd\nQhNhyDGE1ip1yORufBpSTGYMIkoEPMpQHQv/1kLu2hPpM+dam1N8ZojV3GmZ\npqadYJlBKBsRQGtWxGuLqwELEBrSmtEHWN4HPU2AsAWKo/yn6EfrdD730NwG\ndWsjzlVD895+ixkeWnmVKqe+UgLVQFi/pGPackJSC/kq/0I2tmUymvDIrI+x\ngwsyueJxmnnBAOUpnJCv+A/Ct/GXLg3yTcIHED4/szvcmY7Pac4EYlg9PyUo\n+8v3EoGPSlInJBsvxgF2MtHJBzjMoylKfPMFfeH3NUGpdrnVE4xXZglkQ4El\nGQCa\r\n=dFyY\r\n-----END PGP SIGNATURE-----\r\n","signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEUCIQChLk2ZRI/f0M6aV82G1hoO/qufGCZrLHIFjiJMoKgjhwIgfMDCVzmbwuOj7hqb2DdvgzLWilupXJFzbDcGD2jWv0E="}]},"_npmUser":{"name":"wooorm","email":"tituswormer@gmail.com"},"directories":{},"maintainers":[{"name":"wooorm","email":"tituswormer@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/retext_8.1.0_1630069575937_0.7533755535099365"},"_hasShrinkwrap":false},"9.0.0":{"name":"retext","version":"9.0.0","description":"natural language processor powered by plugins part of the unified collective","license":"MIT","keywords":["concrete","cst","language","natural","parse","process","retext","stringify","syntax","tree","unified"],"homepage":"https://github.com/retextjs/retext","repository":{"type":"git","url":"git+https://github.com/retextjs/retext.git#main"},"bugs":{"url":"https://github.com/retextjs/retext/issues"},"funding":{"type":"opencollective","url":"https://opencollective.com/unified"},"author":{"name":"Titus Wormer","email":"tituswormer@gmail.com","url":"https://wooorm.com"},"contributors":[{"name":"Titus Wormer","email":"tituswormer@gmail.com","url":"https://wooorm.com"}],"sideEffects":false,"type":"module","exports":"./index.js","dependencies":{"@types/nlcst":"^2.0.0","retext-latin":"^4.0.0","retext-stringify":"^4.0.0","unified":"^11.0.0"},"scripts":{},"typeCoverage":{"atLeast":100,"detail":true,"ignoreCatch":true,"strict":true},"xo":{"overrides":[{"files":["**/*.ts"],"rules":{"@typescript-eslint/triple-slash-reference":"off"}}],"prettier":true},"_id":"retext@9.0.0","gitHead":"cd8ad9311a6da12d020f196c3a0547e548745d5b","types":"./index.d.ts","_nodeVersion":"20.5.1","_npmVersion":"9.8.0","dist":{"integrity":"sha512-sbMDcpHCNjvlheSgMfEcVrZko3cDzdbe1x/e7G66dFp0Ff7Mldvi2uv6JkJQzdRcvLYE8CA8Oe8siQx8ZOgTcA==","shasum":"ab5cd72836894167b0ca6ae70fdcfaa166267f7a","tarball":"https://registry.npmjs.org/retext/-/retext-9.0.0.tgz","fileCount":4,"unpackedSize":10293,"signatures":[{"keyid":"SHA256:jl3bwswu80PjjokCgh0o2w5c2U4LhQAE57gj9cz1kzA","sig":"MEQCIGfhBhXo1QNUHjEM1gnUXmxJEzVzzdTCUWaFr9vdh2shAiBLZds8936OtRhxL6AEjZ5rY+pAHLvxOn1qVMA1RKXBCg=="}]},"_npmUser":{"name":"wooorm","email":"tituswormer@gmail.com"},"directories":{},"maintainers":[{"name":"wooorm","email":"tituswormer@gmail.com"}],"_npmOperationalInternal":{"host":"s3://npm-registry-packages","tmp":"tmp/retext_9.0.0_1694002577837_0.21804633853257105"},"_hasShrinkwrap":false}},"keywords":["concrete","cst","language","natural","parse","process","retext","stringify","syntax","tree","unified"],"repository":{"type":"git","url":"git+https://github.com/retextjs/retext.git#main"},"author":{"name":"Titus Wormer","email":"tituswormer@gmail.com","url":"https://wooorm.com"},"license":"MIT","readmeFilename":"readme.md","homepage":"https://github.com/retextjs/retext","bugs":{"url":"https://github.com/retextjs/retext/issues"},"users":{"deepak_robo":true,"nguru":true,"sbruchmann":true,"markthethomas":true,"edin-m":true,"coleww":true,"amthenia":true,"tnoetzel":true,"japh":true,"itskdk":true,"leviz":true,"vorg":true,"timvork":true},"contributors":[{"name":"Titus Wormer","email":"tituswormer@gmail.com","url":"https://wooorm.com"}]}