├── .appveyor.yml ├── .gitignore ├── .travis.yml ├── LICENSE ├── README.md ├── bin.js ├── bin ├── unix │ └── node └── win │ └── node.cmd ├── index.js ├── package.json ├── spawnwrap.cmd └── test.js /.appveyor.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafintosh/nitm/HEAD/.appveyor.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafintosh/nitm/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafintosh/nitm/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafintosh/nitm/HEAD/README.md -------------------------------------------------------------------------------- /bin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafintosh/nitm/HEAD/bin.js -------------------------------------------------------------------------------- /bin/unix/node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafintosh/nitm/HEAD/bin/unix/node -------------------------------------------------------------------------------- /bin/win/node.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafintosh/nitm/HEAD/bin/win/node.cmd -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafintosh/nitm/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafintosh/nitm/HEAD/package.json -------------------------------------------------------------------------------- /spawnwrap.cmd: -------------------------------------------------------------------------------- 1 | @ %* 2 | -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mafintosh/nitm/HEAD/test.js --------------------------------------------------------------------------------