├── .babelrc ├── .eslintrc ├── .gitignore ├── .npmignore ├── .travis.yml ├── README.md ├── docs └── api.md ├── package.json ├── src └── index.js └── test ├── album.js ├── artist.js ├── class.js ├── image.js ├── login.js ├── playlist.js ├── search.js └── track.js /.babelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spencercharest/tidal-api/HEAD/.babelrc -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spencercharest/tidal-api/HEAD/.eslintrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | lib/ 2 | out/ 3 | coverage/ 4 | .env 5 | docs.js 6 | node_modules -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spencercharest/tidal-api/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spencercharest/tidal-api/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spencercharest/tidal-api/HEAD/README.md -------------------------------------------------------------------------------- /docs/api.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spencercharest/tidal-api/HEAD/docs/api.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spencercharest/tidal-api/HEAD/package.json -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spencercharest/tidal-api/HEAD/src/index.js -------------------------------------------------------------------------------- /test/album.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spencercharest/tidal-api/HEAD/test/album.js -------------------------------------------------------------------------------- /test/artist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spencercharest/tidal-api/HEAD/test/artist.js -------------------------------------------------------------------------------- /test/class.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spencercharest/tidal-api/HEAD/test/class.js -------------------------------------------------------------------------------- /test/image.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spencercharest/tidal-api/HEAD/test/image.js -------------------------------------------------------------------------------- /test/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spencercharest/tidal-api/HEAD/test/login.js -------------------------------------------------------------------------------- /test/playlist.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spencercharest/tidal-api/HEAD/test/playlist.js -------------------------------------------------------------------------------- /test/search.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spencercharest/tidal-api/HEAD/test/search.js -------------------------------------------------------------------------------- /test/track.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/spencercharest/tidal-api/HEAD/test/track.js --------------------------------------------------------------------------------