serverless-offline-msk
Version:
A serverless offline plugin that enables AWS MSK events
94 lines (93 loc) • 2.03 kB
JSON
{
"name": "cli-progress-footer",
"version": "2.3.2",
"author": "Mariusz Nowak <medyk@medikoo.com> (http://www.medikoo.com/)",
"repository": "medikoo/cli-progress-footer",
"dependencies": {
"cli-color": "^2.0.2",
"d": "^1.0.1",
"es5-ext": "^0.10.61",
"mute-stream": "0.0.8",
"process-utils": "^4.0.0",
"timers-ext": "^0.1.7",
"type": "^2.6.0"
},
"devDependencies": {
"ansi-regex": "^5.0.1",
"eslint": "^8.16.0",
"eslint-config-medikoo": "^4.1.2",
"essentials": "^1.2.0",
"git-list-updated": "^1.2.1",
"github-release-from-cc-changelog": "^2.3.0",
"husky": "^4.3.8",
"lint-staged": "^12.4.3",
"nyc": "^15.1.0",
"prettier-elastic": "^2.2.1",
"tape": "^5.5.3",
"tape-index": "^3.2.0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint"
],
"*.{css,html,js,json,md,yaml,yml}": [
"prettier -c"
]
},
"eslintConfig": {
"extends": "medikoo",
"root": true,
"env": {
"node": true
}
},
"prettier": {
"printWidth": 100,
"tabWidth": 4,
"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",
"lint": "eslint --ignore-path=.gitignore .",
"lint:updated": "pipe-git-updated --ext=js -- eslint --ignore-pattern '!*'",
"prettier-check": "prettier -c --ignore-path .gitignore \"**/*.{css,html,js,json,md,yaml,yml}\"",
"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"
}