diff options
| -rw-r--r-- | LICENSE | 21 | ||||
| -rw-r--r-- | package.json | 5 | ||||
| -rw-r--r-- | readme.md | 16 | 
3 files changed, 37 insertions, 5 deletions
| diff --git a/LICENSE b/LICENSE new file mode 100644 index 00000000..e483c708 --- /dev/null +++ b/LICENSE @@ -0,0 +1,21 @@ +MIT License + +Copyright (c) 2020 Paweł Kuna + +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. diff --git a/package.json b/package.json index af9de9f0..a8971220 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@  {    "name": "tabler-icons", -  "version": "1.0.0", +  "version": "1.0.0-alpha.2",    "repository": {      "type": "git",      "url": "git+https://github.com/tabler/tabler-icons.git" @@ -10,6 +10,9 @@    "bugs": {      "url": "https://github.com/tabler/tabler-icons/issues"    }, +  "files":  [ +    "dist/*" +  ],    "homepage": "https://github.com/tabler/tabler-icons#readme",    "main": "gulpfile.js",    "scripts": { @@ -1,10 +1,10 @@ -# Tabler icons +# Tabler Icons  A set of over 300 free MIT-licensed high-quality SVG icons for you to use in your web projects.   -## Install with npm +### Install with npm  ```  npm install tabler-icons --save @@ -14,10 +14,18 @@ npm install tabler-icons --save  All icons in this repository are drawn with the value `stroke` property, so if you change its value you can get different variants of icon, that will fit into your project. -``` -<svg xmlns="http://www.w3.org/2000/svg" class="icon tabler-icon tabler-icon-disabled" width="24" height="24" viewBox="0 0 24 24" stroke-width="1.25" stroke="currentColor" fill="none" stroke-linecap="round" stroke-linejoin="round"> +```svg +<svg xmlns="http://www.w3.org/2000/svg"  +   class="icon tabler-icon tabler-icon-disabled"  +   width="24" height="24" viewBox="0 0 24 24"  +   stroke-width="1.25" stroke="currentColor" fill="none"  +   stroke-linecap="round" stroke-linejoin="round">    ...  </svg>  ```   + +## License + +Tabler Icons is licensed under the [MIT License](https://github.com/tabler/tabler-icons/blob/master/LICENSE). | 
