Generate random, alliterated animal names.
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Initial commit

+85
+59
.gitignore
··· 1 + # Logs 2 + logs 3 + *.log 4 + npm-debug.log* 5 + yarn-debug.log* 6 + yarn-error.log* 7 + 8 + # Runtime data 9 + pids 10 + *.pid 11 + *.seed 12 + *.pid.lock 13 + 14 + # Directory for instrumented libs generated by jscoverage/JSCover 15 + lib-cov 16 + 17 + # Coverage directory used by tools like istanbul 18 + coverage 19 + 20 + # nyc test coverage 21 + .nyc_output 22 + 23 + # Grunt intermediate storage (http://gruntjs.com/creating-plugins#storing-task-files) 24 + .grunt 25 + 26 + # Bower dependency directory (https://bower.io/) 27 + bower_components 28 + 29 + # node-waf configuration 30 + .lock-wscript 31 + 32 + # Compiled binary addons (http://nodejs.org/api/addons.html) 33 + build/Release 34 + 35 + # Dependency directories 36 + node_modules/ 37 + jspm_packages/ 38 + 39 + # Typescript v1 declaration files 40 + typings/ 41 + 42 + # Optional npm cache directory 43 + .npm 44 + 45 + # Optional eslint cache 46 + .eslintcache 47 + 48 + # Optional REPL history 49 + .node_repl_history 50 + 51 + # Output of 'npm pack' 52 + *.tgz 53 + 54 + # Yarn Integrity file 55 + .yarn-integrity 56 + 57 + # dotenv environment variables file 58 + .env 59 +
+24
LICENSE
··· 1 + This is free and unencumbered software released into the public domain. 2 + 3 + Anyone is free to copy, modify, publish, use, compile, sell, or 4 + distribute this software, either in source code form or as a compiled 5 + binary, for any purpose, commercial or non-commercial, and by any 6 + means. 7 + 8 + In jurisdictions that recognize copyright laws, the author or authors 9 + of this software dedicate any and all copyright interest in the 10 + software to the public domain. We make this dedication for the benefit 11 + of the public at large and to the detriment of our heirs and 12 + successors. We intend this dedication to be an overt act of 13 + relinquishment in perpetuity of all present and future rights to this 14 + software under copyright law. 15 + 16 + THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 17 + EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 18 + MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 19 + IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR 20 + OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, 21 + ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 22 + OTHER DEALINGS IN THE SOFTWARE. 23 + 24 + For more information, please refer to <http://unlicense.org>
+2
README.md
··· 1 + # random-animal-name-generator 2 + It's a random animal name generator!