├── .editorconfig ├── .gitignore ├── .npmignore ├── History.md ├── LICENCE ├── README.md ├── component.json ├── gulpfile.coffee ├── lib ├── index.js └── index.min.js ├── package.json ├── src └── index.coffee └── test └── index.coffee /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rferro/normat/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | npm-debug.log 3 | node_modules 4 | *.sublime-* -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rferro/normat/HEAD/.npmignore -------------------------------------------------------------------------------- /History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rferro/normat/HEAD/History.md -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rferro/normat/HEAD/LICENCE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rferro/normat/HEAD/README.md -------------------------------------------------------------------------------- /component.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rferro/normat/HEAD/component.json -------------------------------------------------------------------------------- /gulpfile.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rferro/normat/HEAD/gulpfile.coffee -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rferro/normat/HEAD/lib/index.js -------------------------------------------------------------------------------- /lib/index.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rferro/normat/HEAD/lib/index.min.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rferro/normat/HEAD/package.json -------------------------------------------------------------------------------- /src/index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rferro/normat/HEAD/src/index.coffee -------------------------------------------------------------------------------- /test/index.coffee: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rferro/normat/HEAD/test/index.coffee --------------------------------------------------------------------------------