├── .gitignore ├── .npmignore ├── .travis.yml ├── .vscode └── launch.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── dist ├── Index.d.ts └── Index.js ├── lib └── Index.ts ├── package.json ├── tsconfig.json └── tslint.json /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | **/*.js.map 3 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | .vscode/ 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dderevjanik/wordpress-jwt-auth/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dderevjanik/wordpress-jwt-auth/HEAD/.vscode/launch.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dderevjanik/wordpress-jwt-auth/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dderevjanik/wordpress-jwt-auth/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dderevjanik/wordpress-jwt-auth/HEAD/README.md -------------------------------------------------------------------------------- /dist/Index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dderevjanik/wordpress-jwt-auth/HEAD/dist/Index.d.ts -------------------------------------------------------------------------------- /dist/Index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dderevjanik/wordpress-jwt-auth/HEAD/dist/Index.js -------------------------------------------------------------------------------- /lib/Index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dderevjanik/wordpress-jwt-auth/HEAD/lib/Index.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dderevjanik/wordpress-jwt-auth/HEAD/package.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dderevjanik/wordpress-jwt-auth/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dderevjanik/wordpress-jwt-auth/HEAD/tslint.json --------------------------------------------------------------------------------