├── .babelrc ├── .eslintrc.json ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── bin ├── help.js ├── help.txt ├── index.js └── version.js ├── lib └── index.js ├── package.json └── test ├── .eslintrc.json ├── api.js ├── cli.js └── lib ├── api.js ├── buffer-stream.js ├── cli.js ├── ng.js └── ok.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysticatea/if-node-version/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysticatea/if-node-version/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /.nyc_output 2 | /coverage 3 | /node_modules 4 | /npm-debug.log 5 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysticatea/if-node-version/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysticatea/if-node-version/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysticatea/if-node-version/HEAD/README.md -------------------------------------------------------------------------------- /bin/help.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysticatea/if-node-version/HEAD/bin/help.js -------------------------------------------------------------------------------- /bin/help.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysticatea/if-node-version/HEAD/bin/help.txt -------------------------------------------------------------------------------- /bin/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysticatea/if-node-version/HEAD/bin/index.js -------------------------------------------------------------------------------- /bin/version.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysticatea/if-node-version/HEAD/bin/version.js -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysticatea/if-node-version/HEAD/lib/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysticatea/if-node-version/HEAD/package.json -------------------------------------------------------------------------------- /test/.eslintrc.json: -------------------------------------------------------------------------------- 1 | { 2 | "extends": "mysticatea/mocha" 3 | } -------------------------------------------------------------------------------- /test/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysticatea/if-node-version/HEAD/test/api.js -------------------------------------------------------------------------------- /test/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysticatea/if-node-version/HEAD/test/cli.js -------------------------------------------------------------------------------- /test/lib/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysticatea/if-node-version/HEAD/test/lib/api.js -------------------------------------------------------------------------------- /test/lib/buffer-stream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysticatea/if-node-version/HEAD/test/lib/buffer-stream.js -------------------------------------------------------------------------------- /test/lib/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysticatea/if-node-version/HEAD/test/lib/cli.js -------------------------------------------------------------------------------- /test/lib/ng.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysticatea/if-node-version/HEAD/test/lib/ng.js -------------------------------------------------------------------------------- /test/lib/ok.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mysticatea/if-node-version/HEAD/test/lib/ok.js --------------------------------------------------------------------------------