├── .gitignore ├── LICENSE ├── README.md ├── lib └── winston-loggly.js ├── package.json └── test ├── config.example.json └── winston-loggly-test.js /.gitignore: -------------------------------------------------------------------------------- 1 | test/config.json 2 | node_modules 3 | npm-debug.log 4 | .DS_Store -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winstonjs/winston-loggly/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winstonjs/winston-loggly/HEAD/README.md -------------------------------------------------------------------------------- /lib/winston-loggly.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winstonjs/winston-loggly/HEAD/lib/winston-loggly.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winstonjs/winston-loggly/HEAD/package.json -------------------------------------------------------------------------------- /test/config.example.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winstonjs/winston-loggly/HEAD/test/config.example.json -------------------------------------------------------------------------------- /test/winston-loggly-test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/winstonjs/winston-loggly/HEAD/test/winston-loggly-test.js --------------------------------------------------------------------------------