├── .eslintignore ├── .eslintrc ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── lib ├── controllers.js ├── helper.js ├── key-map.js ├── logger.js └── macaca-android.js ├── package.json └── test ├── macaca-android.test.js └── mocha.opts /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macacajs/macaca-android/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macacajs/macaca-android/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macacajs/macaca-android/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | .nyc_output 3 | coverage 4 | *.sw* 5 | *.un~ 6 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macacajs/macaca-android/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macacajs/macaca-android/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macacajs/macaca-android/HEAD/README.md -------------------------------------------------------------------------------- /lib/controllers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macacajs/macaca-android/HEAD/lib/controllers.js -------------------------------------------------------------------------------- /lib/helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macacajs/macaca-android/HEAD/lib/helper.js -------------------------------------------------------------------------------- /lib/key-map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macacajs/macaca-android/HEAD/lib/key-map.js -------------------------------------------------------------------------------- /lib/logger.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macacajs/macaca-android/HEAD/lib/logger.js -------------------------------------------------------------------------------- /lib/macaca-android.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macacajs/macaca-android/HEAD/lib/macaca-android.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macacajs/macaca-android/HEAD/package.json -------------------------------------------------------------------------------- /test/macaca-android.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/macacajs/macaca-android/HEAD/test/macaca-android.test.js -------------------------------------------------------------------------------- /test/mocha.opts: -------------------------------------------------------------------------------- 1 | --reporter spec 2 | --------------------------------------------------------------------------------