├── .editorconfig ├── .eslintrc.json ├── .gitignore ├── .npmignore ├── .travis.yml ├── .vscode └── settings.json ├── CHANGELOG.md ├── LICENSE ├── README.md ├── code-example.js ├── code.png ├── index.js ├── lib ├── hooks.js └── index.js ├── mocks └── model.mock.js ├── package.json ├── test ├── .eslintrc └── hooks.js └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebelga/promised-hooks/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebelga/promised-hooks/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebelga/promised-hooks/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebelga/promised-hooks/HEAD/.npmignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebelga/promised-hooks/HEAD/.travis.yml -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebelga/promised-hooks/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebelga/promised-hooks/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebelga/promised-hooks/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebelga/promised-hooks/HEAD/README.md -------------------------------------------------------------------------------- /code-example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebelga/promised-hooks/HEAD/code-example.js -------------------------------------------------------------------------------- /code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebelga/promised-hooks/HEAD/code.png -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | 2 | 'use strict'; 3 | 4 | module.exports = require('./lib/'); -------------------------------------------------------------------------------- /lib/hooks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebelga/promised-hooks/HEAD/lib/hooks.js -------------------------------------------------------------------------------- /lib/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./hooks'); 4 | -------------------------------------------------------------------------------- /mocks/model.mock.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebelga/promised-hooks/HEAD/mocks/model.mock.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebelga/promised-hooks/HEAD/package.json -------------------------------------------------------------------------------- /test/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebelga/promised-hooks/HEAD/test/.eslintrc -------------------------------------------------------------------------------- /test/hooks.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebelga/promised-hooks/HEAD/test/hooks.js -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sebelga/promised-hooks/HEAD/yarn.lock --------------------------------------------------------------------------------