├── .eslintrc.json ├── .gitignore ├── .jsdoc.json ├── LICENSE ├── MIGRATING.md ├── README.md ├── __tests__ └── test.tjbotlib.js ├── babel.config.cjs ├── dist ├── cjs │ ├── package.json │ ├── tjbot.d.ts │ └── tjbot.js └── mjs │ ├── package.json │ ├── tjbot.d.ts │ └── tjbot.js ├── fixup.sh ├── package.json ├── src └── tjbot.js ├── tsconfig-base.json ├── tsconfig-cjs.json └── tsconfig-mjs.json /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibmtjbot/node-tjbotlib/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibmtjbot/node-tjbotlib/HEAD/.gitignore -------------------------------------------------------------------------------- /.jsdoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibmtjbot/node-tjbotlib/HEAD/.jsdoc.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibmtjbot/node-tjbotlib/HEAD/LICENSE -------------------------------------------------------------------------------- /MIGRATING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibmtjbot/node-tjbotlib/HEAD/MIGRATING.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibmtjbot/node-tjbotlib/HEAD/README.md -------------------------------------------------------------------------------- /__tests__/test.tjbotlib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibmtjbot/node-tjbotlib/HEAD/__tests__/test.tjbotlib.js -------------------------------------------------------------------------------- /babel.config.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibmtjbot/node-tjbotlib/HEAD/babel.config.cjs -------------------------------------------------------------------------------- /dist/cjs/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "commonjs" 3 | } 4 | -------------------------------------------------------------------------------- /dist/cjs/tjbot.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibmtjbot/node-tjbotlib/HEAD/dist/cjs/tjbot.d.ts -------------------------------------------------------------------------------- /dist/cjs/tjbot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibmtjbot/node-tjbotlib/HEAD/dist/cjs/tjbot.js -------------------------------------------------------------------------------- /dist/mjs/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "module" 3 | } 4 | -------------------------------------------------------------------------------- /dist/mjs/tjbot.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibmtjbot/node-tjbotlib/HEAD/dist/mjs/tjbot.d.ts -------------------------------------------------------------------------------- /dist/mjs/tjbot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibmtjbot/node-tjbotlib/HEAD/dist/mjs/tjbot.js -------------------------------------------------------------------------------- /fixup.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibmtjbot/node-tjbotlib/HEAD/fixup.sh -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibmtjbot/node-tjbotlib/HEAD/package.json -------------------------------------------------------------------------------- /src/tjbot.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibmtjbot/node-tjbotlib/HEAD/src/tjbot.js -------------------------------------------------------------------------------- /tsconfig-base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibmtjbot/node-tjbotlib/HEAD/tsconfig-base.json -------------------------------------------------------------------------------- /tsconfig-cjs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibmtjbot/node-tjbotlib/HEAD/tsconfig-cjs.json -------------------------------------------------------------------------------- /tsconfig-mjs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibmtjbot/node-tjbotlib/HEAD/tsconfig-mjs.json --------------------------------------------------------------------------------