├── .editorconfig ├── .gitignore ├── .jshintrc ├── .npmignore ├── .travis.yml ├── History.md ├── LICENSE ├── Makefile ├── README.md ├── example ├── example.js ├── namespace.js └── simple.js ├── index.js └── package.json /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahnunchik/mag/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahnunchik/mag/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahnunchik/mag/HEAD/.jshintrc -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahnunchik/mag/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahnunchik/mag/HEAD/.travis.yml -------------------------------------------------------------------------------- /History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahnunchik/mag/HEAD/History.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahnunchik/mag/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahnunchik/mag/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahnunchik/mag/HEAD/README.md -------------------------------------------------------------------------------- /example/example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahnunchik/mag/HEAD/example/example.js -------------------------------------------------------------------------------- /example/namespace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahnunchik/mag/HEAD/example/namespace.js -------------------------------------------------------------------------------- /example/simple.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahnunchik/mag/HEAD/example/simple.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahnunchik/mag/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mahnunchik/mag/HEAD/package.json --------------------------------------------------------------------------------