├── .codeclimate.yml ├── .editorconfig ├── .eslintrc ├── .gitattributes ├── .github ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING ├── ISSUE_TEMPLATE └── PULL_REQUEST_TEMPLATE ├── .gitignore ├── .npmignore ├── .readme └── contents.md ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── package.json └── src ├── bin.js └── index.js /.codeclimate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfroidure/buildbranch/HEAD/.codeclimate.yml -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfroidure/buildbranch/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfroidure/buildbranch/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfroidure/buildbranch/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfroidure/buildbranch/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.github/CONTRIBUTING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfroidure/buildbranch/HEAD/.github/CONTRIBUTING -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfroidure/buildbranch/HEAD/.github/ISSUE_TEMPLATE -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfroidure/buildbranch/HEAD/.github/PULL_REQUEST_TEMPLATE -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfroidure/buildbranch/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | *~ 2 | *.swp 3 | node_modules/ 4 | .git 5 | -------------------------------------------------------------------------------- /.readme/contents.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfroidure/buildbranch/HEAD/.readme/contents.md -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfroidure/buildbranch/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfroidure/buildbranch/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfroidure/buildbranch/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfroidure/buildbranch/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfroidure/buildbranch/HEAD/package.json -------------------------------------------------------------------------------- /src/bin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfroidure/buildbranch/HEAD/src/bin.js -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nfroidure/buildbranch/HEAD/src/index.js --------------------------------------------------------------------------------