UNPKG

serverless-offline-msk

Version:

A serverless offline plugin that enables AWS MSK events

114 lines (113 loc) 2.41 kB
{ "name": "log-node", "version": "8.0.3", "description": "Node.js log generator for log engine", "author": "Mariusz Nowak <medyk@medikoo.com> (http://www.medikoo.com/)", "keywords": [ "log", "log", "logger", "debug", "bunyan", "winston" ], "repository": { "type": "git", "url": "https://github.com/medikoo/log-node.git" }, "dependencies": { "ansi-regex": "^5.0.1", "cli-color": "^2.0.1", "cli-sprintf-format": "^1.1.1", "d": "^1.0.1", "es5-ext": "^0.10.53", "sprintf-kit": "^2.0.1", "supports-color": "^8.1.1", "type": "^2.5.0" }, "devDependencies": { "eslint": "^8.5.0", "eslint-config-medikoo": "^4.1.1", "essentials": "^1.2.0", "git-list-updated": "^1.2.1", "github-release-from-cc-changelog": "^2.2.0", "husky": "^4.3.8", "lint-staged": "^12.1.3", "log": "^6.3.1", "ncjsm": "^4.2.0", "nyc": "^15.1.0", "prettier-elastic": "^2.2.1", "process-utils": "^4.0.0", "tape": "^5.3.2", "tape-index": "^3.2.0" }, "peerDependencies": { "log": "^6.0.0" }, "husky": { "hooks": { "pre-commit": "lint-staged" } }, "lint-staged": { "*.js": [ "eslint" ], "*.{css,html,js,json,md,yaml,yml}": [ "prettier -c" ] }, "eslintConfig": { "extends": "medikoo/node", "root": true, "rules": { "id-length": "off", "no-bitwise": "off" } }, "prettier": { "printWidth": 100, "tabWidth": 4, "quoteProps": "preserve", "overrides": [ { "files": [ "*.md", "*.yml" ], "options": { "tabWidth": 2 } } ] }, "nyc": { "all": true, "exclude": [ ".github", "coverage/**", "test/**", "*.config.js" ], "reporter": [ "lcov", "html", "text-summary" ] }, "scripts": { "coverage": "nyc npm test", "check-coverage": "npm run coverage && nyc check-coverage --statements 80 --function 80 --branches 80 --lines 80", "lint": "eslint --ignore-path=.gitignore .", "lint-updated": "pipe-git-updated --ext=js -- eslint --ignore-pattern '!*'", "prettier-check-updated": "pipe-git-updated --ext=css --ext=html --ext=js --ext=json --ext=md --ext=yaml --ext=yml -- prettier -c", "prettify": "prettier --write --ignore-path .gitignore '**/*.{css,html,js,json,md,yaml,yml}'", "test": "npm run test-prepare && npm run test-run", "test-prepare": "tape-index", "test-run": "node test.index.js" }, "engines": { "node": ">=10.0" }, "license": "ISC" }