├── .gitignore ├── .jshintrc ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── Readme.md ├── example.js ├── lib ├── buttons.json ├── joysticks.json ├── mixins │ └── within.js ├── triggers.json └── xbox.js ├── package.json ├── scripts └── install-stats.js └── tests └── test.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew/node-xbox-controller/HEAD/.gitignore -------------------------------------------------------------------------------- /.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew/node-xbox-controller/HEAD/.jshintrc -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew/node-xbox-controller/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew/node-xbox-controller/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew/node-xbox-controller/HEAD/LICENSE -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew/node-xbox-controller/HEAD/Readme.md -------------------------------------------------------------------------------- /example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew/node-xbox-controller/HEAD/example.js -------------------------------------------------------------------------------- /lib/buttons.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew/node-xbox-controller/HEAD/lib/buttons.json -------------------------------------------------------------------------------- /lib/joysticks.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew/node-xbox-controller/HEAD/lib/joysticks.json -------------------------------------------------------------------------------- /lib/mixins/within.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew/node-xbox-controller/HEAD/lib/mixins/within.js -------------------------------------------------------------------------------- /lib/triggers.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew/node-xbox-controller/HEAD/lib/triggers.json -------------------------------------------------------------------------------- /lib/xbox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew/node-xbox-controller/HEAD/lib/xbox.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew/node-xbox-controller/HEAD/package.json -------------------------------------------------------------------------------- /scripts/install-stats.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew/node-xbox-controller/HEAD/scripts/install-stats.js -------------------------------------------------------------------------------- /tests/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/andrew/node-xbox-controller/HEAD/tests/test.js --------------------------------------------------------------------------------