├── .gitattributes ├── .gitignore ├── .jshintrc ├── .nvmrc ├── .travis.yml ├── LICENSE-MIT ├── README.md ├── bin └── cloneorg ├── index.js ├── lib ├── github.js └── options_validator.js ├── package.json └── test ├── github.js └── options_validator.js /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegon/clone-org-repos/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegon/clone-org-repos/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegon/clone-org-repos/HEAD/.jshintrc -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v0.10.32 -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegon/clone-org-repos/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegon/clone-org-repos/HEAD/LICENSE-MIT -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegon/clone-org-repos/HEAD/README.md -------------------------------------------------------------------------------- /bin/cloneorg: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | module.exports = require('../index'); -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegon/clone-org-repos/HEAD/index.js -------------------------------------------------------------------------------- /lib/github.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegon/clone-org-repos/HEAD/lib/github.js -------------------------------------------------------------------------------- /lib/options_validator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegon/clone-org-repos/HEAD/lib/options_validator.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegon/clone-org-repos/HEAD/package.json -------------------------------------------------------------------------------- /test/github.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegon/clone-org-repos/HEAD/test/github.js -------------------------------------------------------------------------------- /test/options_validator.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tegon/clone-org-repos/HEAD/test/options_validator.js --------------------------------------------------------------------------------