├── .editorconfig ├── .eslintrc ├── .gitattributes ├── .gitignore ├── .iron-node.js ├── .nclirc ├── .npmrc ├── .travis.yml ├── API.md ├── COMMANDLINE-ARGUMENTS.md ├── LICENSE ├── README.md ├── examples └── example.js ├── help-demo.png ├── lib ├── error.js └── index.js ├── package.json └── test ├── example.spec.js └── node-cli.spec.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-a/n-cli/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-a/n-cli/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text=auto 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-a/n-cli/HEAD/.gitignore -------------------------------------------------------------------------------- /.iron-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-a/n-cli/HEAD/.iron-node.js -------------------------------------------------------------------------------- /.nclirc: -------------------------------------------------------------------------------- 1 | { 2 | "name": "test" 3 | } 4 | -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | message=":arrow_up: %s" -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-a/n-cli/HEAD/.travis.yml -------------------------------------------------------------------------------- /API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-a/n-cli/HEAD/API.md -------------------------------------------------------------------------------- /COMMANDLINE-ARGUMENTS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-a/n-cli/HEAD/COMMANDLINE-ARGUMENTS.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-a/n-cli/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-a/n-cli/HEAD/README.md -------------------------------------------------------------------------------- /examples/example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-a/n-cli/HEAD/examples/example.js -------------------------------------------------------------------------------- /help-demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-a/n-cli/HEAD/help-demo.png -------------------------------------------------------------------------------- /lib/error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-a/n-cli/HEAD/lib/error.js -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-a/n-cli/HEAD/lib/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-a/n-cli/HEAD/package.json -------------------------------------------------------------------------------- /test/example.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-a/n-cli/HEAD/test/example.spec.js -------------------------------------------------------------------------------- /test/node-cli.spec.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/s-a/n-cli/HEAD/test/node-cli.spec.js --------------------------------------------------------------------------------