├── .gitignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── Makefile ├── README.md ├── index.html ├── keymage.js ├── keymage.min.js ├── package.json └── test ├── phantom.js ├── test.html ├── test.js └── vendor ├── wru.console.max.js └── wru.min.js /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- 1 | language: node_js 2 | script: "make test" 3 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piranha/keymage/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piranha/keymage/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piranha/keymage/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piranha/keymage/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piranha/keymage/HEAD/index.html -------------------------------------------------------------------------------- /keymage.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piranha/keymage/HEAD/keymage.js -------------------------------------------------------------------------------- /keymage.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piranha/keymage/HEAD/keymage.min.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piranha/keymage/HEAD/package.json -------------------------------------------------------------------------------- /test/phantom.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piranha/keymage/HEAD/test/phantom.js -------------------------------------------------------------------------------- /test/test.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piranha/keymage/HEAD/test/test.html -------------------------------------------------------------------------------- /test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piranha/keymage/HEAD/test/test.js -------------------------------------------------------------------------------- /test/vendor/wru.console.max.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piranha/keymage/HEAD/test/vendor/wru.console.max.js -------------------------------------------------------------------------------- /test/vendor/wru.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/piranha/keymage/HEAD/test/vendor/wru.min.js --------------------------------------------------------------------------------