├── .gitattributes ├── .gitignore ├── .yo-rc.json ├── README.md ├── code-of-conduct.md ├── contributing.md ├── package.json ├── scripts └── getRepos.js └── updateREADME.js /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | readme.md merge=union 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules/ 2 | -------------------------------------------------------------------------------- /.yo-rc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tripflex/awesome-mongoose-os/HEAD/.yo-rc.json -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tripflex/awesome-mongoose-os/HEAD/README.md -------------------------------------------------------------------------------- /code-of-conduct.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tripflex/awesome-mongoose-os/HEAD/code-of-conduct.md -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tripflex/awesome-mongoose-os/HEAD/contributing.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tripflex/awesome-mongoose-os/HEAD/package.json -------------------------------------------------------------------------------- /scripts/getRepos.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tripflex/awesome-mongoose-os/HEAD/scripts/getRepos.js -------------------------------------------------------------------------------- /updateREADME.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tripflex/awesome-mongoose-os/HEAD/updateREADME.js --------------------------------------------------------------------------------