├── .npmignore ├── .travis.yml ├── LICENSE ├── README.md ├── cmd.js ├── index.js └── package.json /.npmignore: -------------------------------------------------------------------------------- 1 | .travis.yml 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feross/vlc-command/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feross/vlc-command/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feross/vlc-command/HEAD/README.md -------------------------------------------------------------------------------- /cmd.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feross/vlc-command/HEAD/cmd.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feross/vlc-command/HEAD/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feross/vlc-command/HEAD/package.json --------------------------------------------------------------------------------