├── .editorconfig ├── .gitignore ├── .jscsrc ├── .jshintrc ├── .travis.yml ├── README.md ├── bin └── jira.js ├── gh-plugin.json ├── package.json └── test ├── .jshintrc └── jira.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-gh/gh-jira/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log -------------------------------------------------------------------------------- /.jscsrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-gh/gh-jira/HEAD/.jscsrc -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-gh/gh-jira/HEAD/.jshintrc -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-gh/gh-jira/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-gh/gh-jira/HEAD/README.md -------------------------------------------------------------------------------- /bin/jira.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-gh/gh-jira/HEAD/bin/jira.js -------------------------------------------------------------------------------- /gh-plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-gh/gh-jira/HEAD/gh-plugin.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-gh/gh-jira/HEAD/package.json -------------------------------------------------------------------------------- /test/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-gh/gh-jira/HEAD/test/.jshintrc -------------------------------------------------------------------------------- /test/jira.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/node-gh/gh-jira/HEAD/test/jira.js --------------------------------------------------------------------------------