├── .gitignore ├── Makefile ├── README.md ├── bin └── cli ├── gulpfile.js ├── index.js ├── lib ├── cli.js └── main.js ├── package.json ├── src └── coffee │ ├── lib │ ├── cli.coffee │ └── main.coffee │ └── test │ └── test.coffee └── test └── test.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | test: 2 | @./node_modules/.bin/mocha -u tdd --reporter spec 3 | 4 | .PHONY: test -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/node-cli-boilerplate/HEAD/README.md -------------------------------------------------------------------------------- /bin/cli: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | require('../lib/main.js'); -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/node-cli-boilerplate/HEAD/gulpfile.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./lib/cli.js'); -------------------------------------------------------------------------------- /lib/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/node-cli-boilerplate/HEAD/lib/cli.js -------------------------------------------------------------------------------- /lib/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/node-cli-boilerplate/HEAD/lib/main.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/node-cli-boilerplate/HEAD/package.json -------------------------------------------------------------------------------- /src/coffee/lib/cli.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/node-cli-boilerplate/HEAD/src/coffee/lib/cli.coffee -------------------------------------------------------------------------------- /src/coffee/lib/main.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/node-cli-boilerplate/HEAD/src/coffee/lib/main.coffee -------------------------------------------------------------------------------- /src/coffee/test/test.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/node-cli-boilerplate/HEAD/src/coffee/test/test.coffee -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jh3y/node-cli-boilerplate/HEAD/test/test.js --------------------------------------------------------------------------------