├── .babelrc ├── .eslintrc ├── .gitignore ├── .jshintrc ├── .npmignore ├── LICENSE ├── README.md ├── img ├── add-stars.png └── auth.png ├── lib ├── cli.js ├── gh.js ├── index.js └── menu.js └── package.json /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusgard/add-stars/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusgard/add-stars/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .DS_Store 3 | npm-debug.log 4 | dist/ 5 | auth.json 6 | -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusgard/add-stars/HEAD/.jshintrc -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | auth.json 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusgard/add-stars/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusgard/add-stars/HEAD/README.md -------------------------------------------------------------------------------- /img/add-stars.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusgard/add-stars/HEAD/img/add-stars.png -------------------------------------------------------------------------------- /img/auth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusgard/add-stars/HEAD/img/auth.png -------------------------------------------------------------------------------- /lib/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusgard/add-stars/HEAD/lib/cli.js -------------------------------------------------------------------------------- /lib/gh.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusgard/add-stars/HEAD/lib/gh.js -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusgard/add-stars/HEAD/lib/index.js -------------------------------------------------------------------------------- /lib/menu.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusgard/add-stars/HEAD/lib/menu.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gusgard/add-stars/HEAD/package.json --------------------------------------------------------------------------------