Skip to content

Commit

Permalink
typos
Browse files Browse the repository at this point in the history
  • Loading branch information
CanRau committed Mar 18, 2018
1 parent 3a64de8 commit 16cd7aa
Show file tree
Hide file tree
Showing 3 changed files with 42 additions and 8 deletions.
20 changes: 20 additions & 0 deletions LICENSE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
# The MIT License (MIT)
Copyright (c) 2018 Can Rau

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.
IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE
OR OTHER DEALINGS IN THE SOFTWARE.
11 changes: 7 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# CUID CLI [![npm version](https://badge.fury.io/js/%40gaiama%2Fcuid-cli.svg)]
this is a cli wrapper for Eric Elliot's [CUID script](https://github.com/ericelliott/cuid)
# cuid CLI ![npm version](https://badge.fury.io/js/%40gaiama%2Fcuid-cli.svg)
this is a cli wrapper for Eric Elliot's [cuid script](https://github.com/ericelliott/cuid)

## Install

Expand All @@ -19,7 +19,7 @@ Optionen:
--version, -V Show version number [boolean]
-t, --times Specify number of ids
-c, --clear Clear console before output [boolean]
-s, --slug Cuid().slug [boolean]
-s, --slug cuid().slug [boolean]
-h, --help Show help [boolean]
Beispiele:
Expand All @@ -32,4 +32,7 @@ Beispiele:
cuid 10 -cs same as above
Get more info about cuids https://usecuid.org
````
````

## Related
- [cuid](https://github.com/ericelliott/cuid)
19 changes: 15 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,18 @@
{
"name": "@gaiama/cuid-cli",
"version": "1.0.3",
"version": "1.0.4",
"description": "cli to generate cuid's",
"main": "index.js",
"author": "Can Rau <cansrau@gmail.com>",
"license": "MIT",
"keywords": ["cuid", "id generator", "unique id", "cli", "uuid"],
"keywords": [
"cuid",
"id generator",
"unique id",
"cli",
"uuid",
"collision resistance"
],
"bin": {
"cuid": "./index.js"
},
Expand All @@ -24,7 +31,11 @@
"@babel/preset-env": "^7.0.0-beta.41"
},
"babel": {
"presets": ["@babel/preset-env"],
"plugins": ["@babel/plugin-proposal-object-rest-spread"]
"presets": [
"@babel/preset-env"
],
"plugins": [
"@babel/plugin-proposal-object-rest-spread"
]
}
}

0 comments on commit 16cd7aa

Please sign in to comment.