├── .github ├── dependabot.yml └── workflows │ └── ci.yml ├── .gitignore ├── CHANGELOG.md ├── LICENSE ├── README.md ├── commitlint.config.js ├── index.js ├── lib ├── agent.js └── post.js ├── package.json └── tests ├── agent.test.js └── support.js /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jusguy/fbnix/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jusguy/fbnix/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jusguy/fbnix/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jusguy/fbnix/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jusguy/fbnix/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jusguy/fbnix/HEAD/README.md -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { extends: ['@commitlint/config-conventional'] } 2 | -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- 1 | 'use strict' 2 | 3 | module.exports = require('./lib/agent') 4 | -------------------------------------------------------------------------------- /lib/agent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jusguy/fbnix/HEAD/lib/agent.js -------------------------------------------------------------------------------- /lib/post.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jusguy/fbnix/HEAD/lib/post.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jusguy/fbnix/HEAD/package.json -------------------------------------------------------------------------------- /tests/agent.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jusguy/fbnix/HEAD/tests/agent.test.js -------------------------------------------------------------------------------- /tests/support.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jusguy/fbnix/HEAD/tests/support.js --------------------------------------------------------------------------------