diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..dca6fec --- /dev/null +++ b/.gitignore @@ -0,0 +1,13 @@ +/build +/node_modules +/*.log +/*.iws +.idea/workspace.xml +.idea/tasks.xml +.idea/profiles_settings.xml +.idea/inspectionProfiles/Project_Default.xml +.idea/inspectionProfiles/profiles_settings.xml + +node_modules/.yarn-integrity +package-lock.json + diff --git a/.idea/modules.xml b/.idea/modules.xml new file mode 100644 index 0000000..63631ff --- /dev/null +++ b/.idea/modules.xml @@ -0,0 +1,8 @@ + + + + + + + + \ No newline at end of file diff --git a/.idea/stackicons.iml b/.idea/stackicons.iml new file mode 100644 index 0000000..d6ebd48 --- /dev/null +++ b/.idea/stackicons.iml @@ -0,0 +1,9 @@ + + + + + + + + + \ No newline at end of file diff --git a/.idea/vcs.xml b/.idea/vcs.xml new file mode 100644 index 0000000..35eb1dd --- /dev/null +++ b/.idea/vcs.xml @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/.npmignore b/.npmignore new file mode 100644 index 0000000..f7c2483 --- /dev/null +++ b/.npmignore @@ -0,0 +1,34 @@ +/.idea +/artifacts +/build +/test +/node_modules +/*.iml +/*.ipr +/*.iws +/.travis.yml +/.scrutinizer.yml +/Gruntfile.js +/*.lock +*.log +/corifeus-boot.json +*.rb +**/*. +/_source +/img +/js +/*.png +/*.rb +/*.ico +/bower_components +/test +/tests +/css/fontviewer.css +/css/normalize.css +/css/stackicons-branding.css +/css/stackicons-branding.min.css +/css/style.css +/fonts/Stackicons/Desktop Fonts +/fonts/Stackicons/Stackicons-Branding* +/*.html +/*.txt diff --git a/README.md b/README.md index 1e5c202..803d19c 100644 --- a/README.md +++ b/README.md @@ -4,3 +4,19 @@ Stackicons Icon font and Sass-based construction kit for Stackicons-Social, which supports multiple button shapes and a unique "multi-color" option in CSS for over 60 social brands. For more information visit + +# Bower +```bash +bower install p3x-stackicons --save +``` + +# NPM + +```bash +npm i p3x-stackicons --save +# or +yarn add p3x-stackicons +``` + +# Original +[Parker Bennett Stackicons](https://github.com/parkerbennett/stackicons) diff --git a/bower.json b/bower.json new file mode 100644 index 0000000..adc5f3a --- /dev/null +++ b/bower.json @@ -0,0 +1,42 @@ +{ + "name": "p3x-stackicons", + "homepage": "https://github.com/patrikx3/stackicons", + "authors": [ + "Parker Bennett ", + "Patrik Laszlo " + ], + "description": "Stackicons are icon fonts for the web, designed to do more — with multiple button shapes and a unique “multi-color” option.", + "main": [ + "css/stackicons-social.css" + ], + "keywords": [ + "social", + "icon", + "stack", + "colorful" + ], + "license": "MIT", + "ignore": [ + "**/.*", + "node_modules", + "_source", + "img", + "js", + "scss", + "*.png", + "*.rb", + "*.ico", + "bower_components", + "test", + "tests", + "css/fontviewer.css", + "css/normalize.css", + "css/stackicons-branding.css", + "css/stackicons-branding.min.css", + "css/style.css", + "fonts/Stackicons/Desktop Fonts", + "fonts/Stackicons/Stackicons-Branding*", + "*.html", + "*.txt" + ] +} diff --git a/package.json b/package.json new file mode 100644 index 0000000..23c06bc --- /dev/null +++ b/package.json @@ -0,0 +1,29 @@ +{ + "name": "p3x-stackicons", + "version": "1.0.0", + "description": "Icon font and Sass-based construction kit for Stackicons-Social, which supports multiple button shapes and a unique \"multi-color\" option in CSS for over 60 social brands.", + "main": "css/stackicons-social.css", + "scripts": { + "test": "echo \"Error: no test specified\" && exit 1" + }, + "repository": { + "type": "git", + "url": "git+https://github.com/patrikx3/stackicons.git" + }, + "keywords": [ + "social", + "icon", + "stack", + "colorful", + "brand" + ], + "author": "Parker Bennett ", + "contributors": [ + "Patrik Laszlo " + ], + "license": "MIT", + "bugs": { + "url": "https://github.com/patrikx3/stackicons/issues" + }, + "homepage": "https://github.com/patrikx3/stackicons#readme" +}