├── .gitignore ├── .travis.yml ├── README.md ├── cli.js ├── compositor.json ├── index.js ├── license ├── package.json ├── screenshot.gif └── test.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timhudson/jwt-secret/HEAD/.travis.yml -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timhudson/jwt-secret/HEAD/README.md -------------------------------------------------------------------------------- /cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timhudson/jwt-secret/HEAD/cli.js -------------------------------------------------------------------------------- /compositor.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timhudson/jwt-secret/HEAD/compositor.json -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timhudson/jwt-secret/HEAD/index.js -------------------------------------------------------------------------------- /license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timhudson/jwt-secret/HEAD/license -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timhudson/jwt-secret/HEAD/package.json -------------------------------------------------------------------------------- /screenshot.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timhudson/jwt-secret/HEAD/screenshot.gif -------------------------------------------------------------------------------- /test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/timhudson/jwt-secret/HEAD/test.js --------------------------------------------------------------------------------