| export var weasels: string[] |
+118
| export var weasels = [ | ||
| 'a lot', | ||
| 'about', | ||
| 'acts', | ||
| 'again', | ||
| 'all', | ||
| 'almost', | ||
| 'already', | ||
| 'also', | ||
| 'anyway', | ||
| 'appeared', | ||
| 'appears', | ||
| 'are a number', | ||
| 'arguably', | ||
| 'back', | ||
| 'be able to', | ||
| 'began', | ||
| 'believed', | ||
| 'better', | ||
| 'bit', | ||
| 'clearly', | ||
| 'close', | ||
| 'combats', | ||
| 'completely', | ||
| 'considered', | ||
| 'could', | ||
| 'decided', | ||
| 'down', | ||
| 'effective', | ||
| 'efficient', | ||
| 'enough', | ||
| 'even', | ||
| 'ever', | ||
| 'exceedingly', | ||
| 'excellent', | ||
| 'expert', | ||
| 'experts', | ||
| 'extremely', | ||
| 'fairly', | ||
| 'far', | ||
| 'felt', | ||
| 'few', | ||
| 'gains', | ||
| 'heard', | ||
| 'helps', | ||
| 'huge', | ||
| 'improved', | ||
| 'interestingly', | ||
| 'is a number', | ||
| 'is like', | ||
| 'just', | ||
| 'knew', | ||
| 'largely', | ||
| 'like', | ||
| 'linked to', | ||
| 'literally', | ||
| 'looked', | ||
| 'looks', | ||
| 'lots', | ||
| 'many', | ||
| 'might', | ||
| 'most', | ||
| 'mostly', | ||
| 'not rocket science', | ||
| 'noticed', | ||
| 'often', | ||
| 'only', | ||
| 'outside the box', | ||
| 'over', | ||
| 'own', | ||
| 'pretty', | ||
| 'probably', | ||
| 'quite', | ||
| 'rather', | ||
| 'real', | ||
| 'realised', | ||
| 'realized', | ||
| 'really', | ||
| 'recognised', | ||
| 'recognized', | ||
| 'relatively', | ||
| 'remarkably', | ||
| 'reportedly', | ||
| 'saw', | ||
| 'seemed', | ||
| 'seems', | ||
| 'several', | ||
| 'significantly', | ||
| 'smelled', | ||
| 'so', | ||
| 'some', | ||
| 'somehow', | ||
| 'sort', | ||
| 'started', | ||
| 'still', | ||
| 'substantially', | ||
| 'supports', | ||
| 'supposed', | ||
| 'surprisingly', | ||
| 'that', | ||
| 'then', | ||
| 'thought', | ||
| 'tiny', | ||
| 'touched', | ||
| 'understood', | ||
| 'up', | ||
| 'useful', | ||
| 'various', | ||
| 'vast', | ||
| 'very', | ||
| 'virtually', | ||
| 'wanted', | ||
| 'watched', | ||
| 'well', | ||
| 'wished', | ||
| 'wondered', | ||
| 'works' | ||
| ] |
+34
-22
| { | ||
| "name": "weasels", | ||
| "version": "1.1.5", | ||
| "version": "2.0.0", | ||
| "description": "List of (possible) English weasel words", | ||
@@ -21,25 +21,31 @@ "license": "MIT", | ||
| ], | ||
| "main": "index.json", | ||
| "sideEffects": false, | ||
| "type": "module", | ||
| "main": "index.js", | ||
| "types": "index.d.ts", | ||
| "files": [ | ||
| "index.json" | ||
| "index.d.ts", | ||
| "index.js" | ||
| ], | ||
| "dependencies": {}, | ||
| "devDependencies": { | ||
| "browserify": "^16.0.0", | ||
| "plain-text-data-to-json": "^1.0.0", | ||
| "prettier": "^1.0.0", | ||
| "remark-cli": "^7.0.0", | ||
| "remark-preset-wooorm": "^6.0.0", | ||
| "tape": "^4.0.0", | ||
| "tinyify": "^2.0.0", | ||
| "xo": "^0.25.0" | ||
| "@types/tape": "^4.0.0", | ||
| "c8": "^7.0.0", | ||
| "plain-text-data-to-json": "^2.0.0", | ||
| "prettier": "^2.0.0", | ||
| "remark-cli": "^9.0.0", | ||
| "remark-preset-wooorm": "^8.0.0", | ||
| "rimraf": "^3.0.0", | ||
| "tape": "^5.0.0", | ||
| "type-coverage": "^2.0.0", | ||
| "typescript": "^4.0.0", | ||
| "xo": "^0.38.0" | ||
| }, | ||
| "scripts": { | ||
| "prepack": "npm run build && npm run format", | ||
| "build": "rimraf \"*.d.ts\" && tsc && type-coverage", | ||
| "generate": "node build", | ||
| "format": "remark . -qfo && prettier --write \"**/*.js\" && xo --fix", | ||
| "build-bundle": "browserify index.json -s weasels -o weasels.js", | ||
| "build-mangle": "browserify index.json -s weasels -p tinyify -o weasels.min.js", | ||
| "build": "npm run build-bundle && npm run build-mangle", | ||
| "test-api": "node test", | ||
| "test": "npm run generate && npm run format && npm run build && npm run test-api" | ||
| "format": "remark . -qfo && prettier . -w --loglevel warn && xo --fix", | ||
| "test-api": "node test.js", | ||
| "test-coverage": "c8 --check-coverage --branches 100 --functions 100 --lines 100 --statements 100 --reporter lcov node test.js", | ||
| "test": "npm run generate && npm run build && npm run format && npm run test-coverage" | ||
| }, | ||
@@ -56,6 +62,7 @@ "prettier": { | ||
| "prettier": true, | ||
| "esnext": false, | ||
| "ignores": [ | ||
| "weasels.js" | ||
| ] | ||
| "rules": { | ||
| "import/no-mutable-exports": "off", | ||
| "no-var": "off", | ||
| "prefer-arrow-callback": "off" | ||
| } | ||
| }, | ||
@@ -66,3 +73,8 @@ "remarkConfig": { | ||
| ] | ||
| }, | ||
| "typeCoverage": { | ||
| "atLeast": 100, | ||
| "detail": true, | ||
| "strict": true | ||
| } | ||
| } |
+14
-3
| # weasels | ||
| [![Build][build-badge]][build] | ||
| [![Coverage][coverage-badge]][coverage] | ||
| [![Downloads][downloads-badge]][downloads] | ||
@@ -11,2 +12,5 @@ [![Size][size-badge]][size] | ||
| This package is ESM only: Node 12+ is needed to use it and it must be `import`ed | ||
| instead of `require`d. | ||
| [npm][]: | ||
@@ -21,3 +25,3 @@ | ||
| ```js | ||
| var weasels = require('weasels') | ||
| import {weasels} from 'weasels' | ||
@@ -46,2 +50,5 @@ console.log(weasels.length) //=> 116 | ||
| This package exports the following identifiers: `weasels`. | ||
| There is no default export. | ||
| ### `weasels` | ||
@@ -80,6 +87,10 @@ | ||
| [build-badge]: https://img.shields.io/travis/words/weasels.svg | ||
| [build-badge]: https://github.com/words/weasels/workflows/main/badge.svg | ||
| [build]: https://travis-ci.org/words/weasels | ||
| [build]: https://github.com/words/weasels/actions | ||
| [coverage-badge]: https://img.shields.io/codecov/c/github/words/weasels.svg | ||
| [coverage]: https://codecov.io/github/words/weasels | ||
| [downloads-badge]: https://img.shields.io/npm/dm/weasels.svg | ||
@@ -86,0 +97,0 @@ |
-118
| [ | ||
| "a lot", | ||
| "about", | ||
| "acts", | ||
| "again", | ||
| "all", | ||
| "almost", | ||
| "already", | ||
| "also", | ||
| "anyway", | ||
| "appeared", | ||
| "appears", | ||
| "are a number", | ||
| "arguably", | ||
| "back", | ||
| "be able to", | ||
| "began", | ||
| "believed", | ||
| "better", | ||
| "bit", | ||
| "clearly", | ||
| "close", | ||
| "combats", | ||
| "completely", | ||
| "considered", | ||
| "could", | ||
| "decided", | ||
| "down", | ||
| "effective", | ||
| "efficient", | ||
| "enough", | ||
| "even", | ||
| "ever", | ||
| "exceedingly", | ||
| "excellent", | ||
| "expert", | ||
| "experts", | ||
| "extremely", | ||
| "fairly", | ||
| "far", | ||
| "felt", | ||
| "few", | ||
| "gains", | ||
| "heard", | ||
| "helps", | ||
| "huge", | ||
| "improved", | ||
| "interestingly", | ||
| "is a number", | ||
| "is like", | ||
| "just", | ||
| "knew", | ||
| "largely", | ||
| "like", | ||
| "linked to", | ||
| "literally", | ||
| "looked", | ||
| "looks", | ||
| "lots", | ||
| "many", | ||
| "might", | ||
| "most", | ||
| "mostly", | ||
| "not rocket science", | ||
| "noticed", | ||
| "often", | ||
| "only", | ||
| "outside the box", | ||
| "over", | ||
| "own", | ||
| "pretty", | ||
| "probably", | ||
| "quite", | ||
| "rather", | ||
| "real", | ||
| "realised", | ||
| "realized", | ||
| "really", | ||
| "recognised", | ||
| "recognized", | ||
| "relatively", | ||
| "remarkably", | ||
| "reportedly", | ||
| "saw", | ||
| "seemed", | ||
| "seems", | ||
| "several", | ||
| "significantly", | ||
| "smelled", | ||
| "so", | ||
| "some", | ||
| "somehow", | ||
| "sort", | ||
| "started", | ||
| "still", | ||
| "substantially", | ||
| "supports", | ||
| "supposed", | ||
| "surprisingly", | ||
| "that", | ||
| "then", | ||
| "thought", | ||
| "tiny", | ||
| "touched", | ||
| "understood", | ||
| "up", | ||
| "useful", | ||
| "various", | ||
| "vast", | ||
| "very", | ||
| "virtually", | ||
| "wanted", | ||
| "watched", | ||
| "well", | ||
| "wished", | ||
| "wondered", | ||
| "works" | ||
| ] |
Major refactor
Supply chain riskPackage has recently undergone a major refactor. It may be unstable or indicate significant internal changes. Use caution when updating to versions that include significant changes.
Found 1 instance in 1 package
6821
12.24%5
25%119
0.85%107
11.46%Yes
NaN11
37.5%1
Infinity%