├── .gitignore ├── bower.json ├── modularscale.js ├── modularscale.min.js ├── package.json ├── readme.md └── test.html /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | npm-debug.log 3 | -------------------------------------------------------------------------------- /bower.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modularscale/modularscale-js/HEAD/bower.json -------------------------------------------------------------------------------- /modularscale.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modularscale/modularscale-js/HEAD/modularscale.js -------------------------------------------------------------------------------- /modularscale.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modularscale/modularscale-js/HEAD/modularscale.min.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modularscale/modularscale-js/HEAD/package.json -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modularscale/modularscale-js/HEAD/readme.md -------------------------------------------------------------------------------- /test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/modularscale/modularscale-js/HEAD/test.html --------------------------------------------------------------------------------