├── .editorconfig ├── .github ├── contributing.md ├── issue_template.md └── pull_request_template.md ├── .gitignore ├── .istanbul.yml ├── .npmignore ├── .travis.yml ├── CHANGELOG.md ├── LICENSE ├── README.md ├── lib ├── hooks │ ├── hash-password.js │ ├── index.js │ └── protect.js ├── index.js ├── utils │ └── hash.js └── verifier.js ├── mocha.opts ├── package.json └── test ├── hooks ├── hash-password.test.js ├── index.test.js └── protect.test.js ├── index.test.js ├── integration.test.js └── verifier.test.js /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feathersjs-ecosystem/authentication-local/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feathersjs-ecosystem/authentication-local/HEAD/.github/contributing.md -------------------------------------------------------------------------------- /.github/issue_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feathersjs-ecosystem/authentication-local/HEAD/.github/issue_template.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feathersjs-ecosystem/authentication-local/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feathersjs-ecosystem/authentication-local/HEAD/.gitignore -------------------------------------------------------------------------------- /.istanbul.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feathersjs-ecosystem/authentication-local/HEAD/.istanbul.yml -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feathersjs-ecosystem/authentication-local/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feathersjs-ecosystem/authentication-local/HEAD/.travis.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feathersjs-ecosystem/authentication-local/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feathersjs-ecosystem/authentication-local/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feathersjs-ecosystem/authentication-local/HEAD/README.md -------------------------------------------------------------------------------- /lib/hooks/hash-password.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feathersjs-ecosystem/authentication-local/HEAD/lib/hooks/hash-password.js -------------------------------------------------------------------------------- /lib/hooks/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feathersjs-ecosystem/authentication-local/HEAD/lib/hooks/index.js -------------------------------------------------------------------------------- /lib/hooks/protect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feathersjs-ecosystem/authentication-local/HEAD/lib/hooks/protect.js -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feathersjs-ecosystem/authentication-local/HEAD/lib/index.js -------------------------------------------------------------------------------- /lib/utils/hash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feathersjs-ecosystem/authentication-local/HEAD/lib/utils/hash.js -------------------------------------------------------------------------------- /lib/verifier.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feathersjs-ecosystem/authentication-local/HEAD/lib/verifier.js -------------------------------------------------------------------------------- /mocha.opts: -------------------------------------------------------------------------------- 1 | --recursive test/ 2 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feathersjs-ecosystem/authentication-local/HEAD/package.json -------------------------------------------------------------------------------- /test/hooks/hash-password.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feathersjs-ecosystem/authentication-local/HEAD/test/hooks/hash-password.test.js -------------------------------------------------------------------------------- /test/hooks/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feathersjs-ecosystem/authentication-local/HEAD/test/hooks/index.test.js -------------------------------------------------------------------------------- /test/hooks/protect.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feathersjs-ecosystem/authentication-local/HEAD/test/hooks/protect.test.js -------------------------------------------------------------------------------- /test/index.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feathersjs-ecosystem/authentication-local/HEAD/test/index.test.js -------------------------------------------------------------------------------- /test/integration.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feathersjs-ecosystem/authentication-local/HEAD/test/integration.test.js -------------------------------------------------------------------------------- /test/verifier.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/feathersjs-ecosystem/authentication-local/HEAD/test/verifier.test.js --------------------------------------------------------------------------------