Skip to content

Commit

Permalink
Meta tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
sindresorhus committed May 2, 2019
1 parent 976c7ba commit f36cf4a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "yes-no-words",
"version": "1.4.0",
"description": "Get yes/no like words",
"description": "Get yes/no-like words",
"license": "MIT",
"repository": "sindresorhus/yes-no-words",
"author": {
Expand All @@ -28,7 +28,6 @@
"keywords": [
"cli-app",
"cli",
"bin",
"word",
"words",
"list",
Expand Down
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# yes-no-words [![Build Status](https://travis-ci.org/sindresorhus/yes-no-words.svg?branch=master)](https://travis-ci.org/sindresorhus/yes-no-words)

> Get yes/no like words
> Get yes/no-like words
![](https://cloud.githubusercontent.com/assets/170270/7630384/c62755ba-fa35-11e4-95a3-a9c51d376f4b.png)

Expand Down
4 changes: 2 additions & 2 deletions test.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@ test('main', t => {
t.truthy(yesNoWords.noRandom());
t.truthy(yesNoWords.allRandom());
t.not(yesNoWords.allRandom(), yesNoWords.allRandom());
t.not(yesNoWords.all.indexOf('Yes'), -1);
t.not(yesNoWords.all.indexOf('No'), -1);
t.true(yesNoWords.all.includes('Yes'));
t.true(yesNoWords.all.includes('No'));
});

0 comments on commit f36cf4a

Please sign in to comment.