├── .gitignore ├── .npmignore ├── LICENSE ├── README.md ├── assets └── nif.gif ├── nif └── package.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thlorenz/nif/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | assets/ 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thlorenz/nif/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thlorenz/nif/HEAD/README.md -------------------------------------------------------------------------------- /assets/nif.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thlorenz/nif/HEAD/assets/nif.gif -------------------------------------------------------------------------------- /nif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thlorenz/nif/HEAD/nif -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thlorenz/nif/HEAD/package.json --------------------------------------------------------------------------------