├── .gitattributes ├── .gitignore ├── .npmrc ├── bin └── download.js ├── completions └── readme.fish ├── index.js ├── package.json └── readme.markdown /.gitattributes: -------------------------------------------------------------------------------- 1 | bin -text 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | core 3 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | save-prefix = ~ 2 | -------------------------------------------------------------------------------- /bin/download.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominictarr/readme/HEAD/bin/download.js -------------------------------------------------------------------------------- /completions/readme.fish: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominictarr/readme/HEAD/completions/readme.fish -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominictarr/readme/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominictarr/readme/HEAD/package.json -------------------------------------------------------------------------------- /readme.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dominictarr/readme/HEAD/readme.markdown --------------------------------------------------------------------------------