{"analyzedAt":"2022-11-07T11:49:56.813Z","collected":{"metadata":{"name":"fillers","scope":"unscoped","version":"2.0.1","description":"List of (possible) English filler words","keywords":["filler","word","list"],"date":"2022-11-06T12:00:55.957Z","author":{"name":"Titus Wormer","email":"tituswormer@gmail.com","url":"https://wooorm.com","username":"wooorm"},"publisher":{"username":"wooorm","email":"tituswormer@gmail.com"},"maintainers":[{"username":"wooorm","email":"tituswormer@gmail.com"},{"username":"zeke","email":"zeke@sikelianos.com"}],"contributors":[{"name":"Titus Wormer","email":"tituswormer@gmail.com","url":"https://wooorm.com"}],"repository":{"type":"git","url":"git+https://github.com/words/fillers.git"},"links":{"npm":"https://www.npmjs.com/package/fillers","homepage":"https://github.com/words/fillers#readme","repository":"https://github.com/words/fillers","bugs":"https://github.com/words/fillers/issues"},"license":"MIT","devDependencies":{"@types/node":"^18.0.0","c8":"^7.0.0","plain-text-data-to-json":"^2.0.0","prettier":"^2.0.0","remark-cli":"^11.0.0","remark-preset-wooorm":"^9.0.0","type-coverage":"^2.0.0","typescript":"^4.0.0","xo":"^0.52.0"},"releases":[{"from":"2022-10-08T00:00:00.000Z","to":"2022-11-07T00:00:00.000Z","count":2},{"from":"2022-08-09T00:00:00.000Z","to":"2022-11-07T00:00:00.000Z","count":2},{"from":"2022-05-11T00:00:00.000Z","to":"2022-11-07T00:00:00.000Z","count":2},{"from":"2021-11-07T00:00:00.000Z","to":"2022-11-07T00:00:00.000Z","count":2},{"from":"2020-11-07T00:00:00.000Z","to":"2022-11-07T00:00:00.000Z","count":3}],"hasTestScript":true,"hasSelectiveFiles":true,"readme":"# fillers\n\n[![Build][build-badge]][build]\n[![Coverage][coverage-badge]][coverage]\n[![Downloads][downloads-badge]][downloads]\n[![Size][size-badge]][size]\n\nList of, *like*, English (both British and American) filler words.\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    *   [`fillers`](#fillers-1)\n*   [Data](#data)\n*   [Types](#types)\n*   [Compatibility](#compatibility)\n*   [Related](#related)\n*   [Contribute](#contribute)\n*   [Security](#security)\n*   [License](#license)\n\n## What is this?\n\nThis package exposes a list of pretty useless words, which are typically used\nto fill empty space.\n\n## When should I use this?\n\nUse this when you want to do fun things with natural language.\n\n## Install\n\nThis package is [ESM only][esm].\nIn Node.js (version 14.14+, 16.0+), install with [npm][]:\n\n```sh\nnpm install fillers\n```\n\nIn Deno with [`esm.sh`][esmsh]:\n\n```js\nimport {fillers} from 'https://esm.sh/fillers@2'\n```\n\nIn browsers with [`esm.sh`][esmsh]:\n\n```html\n<script type=\"module\">\n  import {fillers} from 'https://esm.sh/fillers@2?bundle'\n</script>\n```\n\n## Use\n\n```js\nimport {fillers} from 'fillers'\n\nconsole.log(fillers.length) //=> 80\n\nconsole.log(fillers.slice(0, 10))\n```\n\nYields:\n\n```js\n[ 'a',\n  'able',\n  'aboard',\n  'about',\n  'above',\n  'absent',\n  'accept',\n  'accident',\n  'account',\n  'ache' ]\n```\n\n## API\n\nThis package exports the identifier `fillers`.\nThere is no default export.\n\n### `fillers`\n\n*So*, `fillers` exposes a list of strings (`Array<string>`).\n\n## Data\n\nFor a complete list of supported filler words and phrases, *like*, see\n[`index.js`][data].\n\nNote that the words listed in `fillers` *might* or, in fact, *might* not be\nfillers.\n\n## Types\n\nThis package is fully typed with [TypeScript][].\nIt exports no additional types.\n\n## Compatibility\n\nThis package is at least compatible with all maintained versions of Node.js.\nAs of now, that is Node.js 14.14+ and 16.0+.\nIt also works in Deno and modern browsers.\n\n## Related\n\n*   [`buzzwords`](https://github.com/words/buzzwords)\n    — list of buzzwords\n*   [`dale-chall`](https://github.com/words/dale-chall)\n    — list of familiar American-English words (1995)\n*   [`hedges`](https://github.com/words/hedges)\n    — list of hedge words\n*   [`profanities`](https://github.com/words/profanities)\n    — list of profane words\n*   [`spache`](https://github.com/words/spache)\n    — list of simple American-English words (1974)\n*   [`weasels`](https://github.com/words/weasels)\n    — list of weasel words\n\n## Contribute\n\nYes please!\nSee [How to Contribute to Open Source][contribute].\n\n## Security\n\nThis package is safe.\n\n## License\n\n[MIT][license] © [Titus Wormer][author]\n\n<!-- Definitions -->\n\n[build-badge]: https://github.com/words/fillers/workflows/main/badge.svg\n\n[build]: https://github.com/words/fillers/actions\n\n[coverage-badge]: https://img.shields.io/codecov/c/github/words/fillers.svg\n\n[coverage]: https://codecov.io/github/words/fillers\n\n[downloads-badge]: https://img.shields.io/npm/dm/fillers.svg\n\n[downloads]: https://www.npmjs.com/package/fillers\n\n[size-badge]: https://img.shields.io/bundlephobia/minzip/fillers.svg\n\n[size]: https://bundlephobia.com/result?p=fillers\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[typescript]: https://www.typescriptlang.org\n\n[contribute]: https://opensource.guide/how-to-contribute/\n\n[license]: license\n\n[author]: https://wooorm.com\n\n[data]: index.js"},"npm":{"downloads":[{"from":"2022-11-06T00:00:00.000Z","to":"2022-11-07T00:00:00.000Z","count":203},{"from":"2022-10-31T00:00:00.000Z","to":"2022-11-07T00:00:00.000Z","count":771},{"from":"2022-10-08T00:00:00.000Z","to":"2022-11-07T00:00:00.000Z","count":1943},{"from":"2022-08-09T00:00:00.000Z","to":"2022-11-07T00:00:00.000Z","count":5029},{"from":"2022-05-11T00:00:00.000Z","to":"2022-11-07T00:00:00.000Z","count":8465},{"from":"2021-11-07T00:00:00.000Z","to":"2022-11-07T00:00:00.000Z","count":16011}],"starsCount":0},"github":{"starsCount":37,"forksCount":6,"subscribersCount":5,"issues":{"count":15,"openCount":0,"distribution":{"3600":1,"10800":1,"32400":4,"97200":6,"291600":1,"874800":2,"2624400":0,"7873200":0,"23619600":0,"70858800":0,"212576400":0},"isDisabled":false},"contributors":[{"username":"wooorm","commitsCount":103},{"username":"greenkeeperio-bot","commitsCount":5}],"commits":[{"from":"2022-10-31T00:00:00.000Z","to":"2022-11-07T00:00:00.000Z","count":8},{"from":"2022-10-08T00:00:00.000Z","to":"2022-11-07T00:00:00.000Z","count":8},{"from":"2022-08-09T00:00:00.000Z","to":"2022-11-07T00:00:00.000Z","count":8},{"from":"2022-05-11T00:00:00.000Z","to":"2022-11-07T00:00:00.000Z","count":8},{"from":"2021-11-07T00:00:00.000Z","to":"2022-11-07T00:00:00.000Z","count":8}]},"source":{"files":{"readmeSize":3599,"testsSize":343},"badges":[{"urls":{"original":"https://img.shields.io/codecov/c/github/words/fillers.svg","service":"https://codecov.io/github/words/fillers/graphs/badge.svg","shields":"https://img.shields.io/codecov/c/github/words/fillers.svg","content":"https://img.shields.io/codecov/c/github/words/fillers.json"},"info":{"service":"codecov","type":"coverage"}},{"urls":{"original":"https://img.shields.io/npm/dm/fillers.svg","shields":"https://img.shields.io/npm/dm/fillers.svg","content":"https://img.shields.io/npm/dm/fillers.json"},"info":{"service":"npm","type":"downloads","modifiers":{"type":"dm"}}}],"linters":["editorconfig","prettier","xo"]}},"evaluation":{"quality":{"carefulness":0.9199999999999999,"tests":0.5145,"health":1,"branding":0.3},"popularity":{"communityInterest":50,"downloadsCount":1676.3333333333333,"downloadsAcceleration":6.015734398782344,"dependentsCount":0},"maintenance":{"releasesFrequency":1,"commitsFrequency":0.9,"openIssues":1,"issuesDistribution":1}},"score":{"final":0.6532880906724388,"detail":{"quality":0.9082257049378463,"popularity":0.08811378881949204,"maintenance":0.9999444374407507}}}