Latest Threat Research:SANDWORM_MODE: Shai-Hulud-Style npm Worm Hijacks CI Workflows and Poisons AI Toolchains.Details
Socket
Book a DemoInstallSign in
Socket

weasels

Package Overview
Dependencies
Maintainers
1
Versions
14
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

weasels - npm Package Compare versions

Comparing version
1.1.0
to
1.1.1
+19
-33
package.json
{
"name": "weasels",
"version": "1.1.0",
"version": "1.1.1",
"description": "List of (possible) English weasel words",

@@ -11,6 +11,2 @@ "license": "MIT",

],
"files": [
"index.js",
"index.json"
],
"repository": "https://github.com/wooorm/weasels",

@@ -22,48 +18,38 @@ "bugs": "https://github.com/wooorm/weasels/issues",

],
"main": "index.json",
"files": [
"index.json"
],
"dependencies": {},
"devDependencies": {
"browserify": "^13.0.1",
"browserify": "^14.0.0",
"esmangle": "^1.0.1",
"nyc": "^7.0.0",
"plain-text-data-to-json": "^1.0.0",
"remark-cli": "^1.0.0",
"remark-comment-config": "^4.0.0",
"remark-github": "^5.0.0",
"remark-lint": "^4.0.0",
"remark-validate-links": "^4.0.0",
"remark-cli": "^3.0.0",
"remark-preset-wooorm": "^3.0.0",
"tape": "^4.0.0",
"xo": "^0.16.0"
"xo": "^0.18.0"
},
"scripts": {
"build-md": "remark . --quiet --frail",
"build-generate": "node script/generate.js",
"build-bundle": "browserify index.js --bare -s weasels > weasels.js",
"build-md": "remark . -qfo",
"build-generate": "node build",
"build-bundle": "browserify index.json --bare -s weasels > weasels.js",
"build-mangle": "esmangle weasels.js > weasels.min.js",
"build": "npm run build-md && npm run build-generate && npm run build-bundle && npm run build-mangle",
"build": "npm run build-generate && npm run build-md && npm run build-bundle && npm run build-mangle",
"lint": "xo",
"test-api": "node test",
"test-coverage": "nyc --reporter lcov tape test.js",
"test": "npm run build && npm run lint && npm run test-coverage"
"test": "npm run build && npm run lint && npm run test-api"
},
"xo": {
"space": true,
"esnext": false,
"ignores": [
"weasels.js",
"weasels.min.js"
"weasels.js"
]
},
"remarkConfig": {
"output": true,
"plugins": {
"comment-config": null,
"github": null,
"lint": {
"list-item-spacing": false
},
"validate-links": null
},
"settings": {
"bullet": "*"
}
"plugins": [
"preset-wooorm"
]
}
}
+19
-23

@@ -1,2 +0,2 @@

# weasels [![Build Status][travis-badge]][travis] [![Coverage Status][codecov-badge]][codecov]
# weasels [![Build Status][travis-badge]][travis]

@@ -7,3 +7,3 @@ List of _many_ English, both British and American, weasel words.

[npm][npm-install]:
[npm][npm]:

@@ -19,3 +19,3 @@ ```bash

weasels.length; // 116
weasels.length; //=> 116

@@ -48,4 +48,4 @@ console.log(weasels.slice(0, 10));

**weasels** supports _several_ weasel words and phrases. For a complete
list, see [index.json][data].
`weasels` supports _several_ weasel words and phrases. For a complete
list, see [`data.txt`][data].

@@ -57,14 +57,14 @@ Note that the words listed in **weasels** _might_ or, in fact, _might_

* [buzzwords](https://github.com/wooorm/buzzwords)
— List of buzzwords;
* [dale-chall](https://github.com/wooorm/dale-chall)
— List of familiar American-English words (1995);
* [fillers](https://github.com/wooorm/fillers)
— List of filler words;
* [hedges](https://github.com/wooorm/hedges)
— List of hedge words.
* [profanities](https://github.com/wooorm/profanities)
— List of profane words;
* [spache](https://github.com/wooorm/spache)
— List of simple American-English words (1974);
* [`buzzwords`](https://github.com/wooorm/buzzwords)
— List of buzzwords
* [`dale-chall`](https://github.com/wooorm/dale-chall)
— List of familiar American-English words (1995)
* [`fillers`](https://github.com/wooorm/fillers)
— List of filler words
* [`hedges`](https://github.com/wooorm/hedges)
— List of hedge words
* [`profanities`](https://github.com/wooorm/profanities)
— List of profane words
* [`spache`](https://github.com/wooorm/spache)
— List of simple American-English words (1974)

@@ -81,8 +81,4 @@ ## License

[codecov-badge]: https://img.shields.io/codecov/c/github/wooorm/weasels.svg
[npm]: https://docs.npmjs.com/cli/install
[codecov]: https://codecov.io/github/wooorm/weasels
[npm-install]: https://docs.npmjs.com/cli/install
[license]: LICENSE

@@ -92,2 +88,2 @@

[data]: index.json
[data]: data.txt
<!--remark setext-->
<!--lint disable no-multiple-toplevel-headings -->
1.1.0 / 2016-07-30
==================
* Rewrite module ([`d450b06`](https://github.com/wooorm/weasels/commit/d450b06))
1.0.0 / 2016-01-15
==================
/**
* @author Titus Wormer
* @copyright 2014 Titus Wormer
* @license MIT
* @module weasels
* @fileoverview List of (possible) English weasel words.
*/
'use strict';
/* Expose. */
module.exports = require('./index.json');