eslint-formatter-ratchet
Version:
Ratcheting applied to ESLint results so new issues don't creep in.
63 lines (62 loc) • 1.48 kB
JSON
{
"name": "eslint-formatter-ratchet",
"version": "2.0.0",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/Jmsa/eslint-formatter-ratchet.git"
},
"description": "Ratcheting applied to ESLint results so new issues don't creep in.",
"author": "James Abercrombie <jmsabercrombie88@gmail.com>",
"license": "MIT",
"keywords": [
"eslint",
"eslint-formatter",
"eslintformatter",
"ratchet"
],
"files": [
"README.md",
"LICENSE.txt",
"index.js"
],
"scripts": {
"test": "FORCE_COLOR=false nyc mocha ./index.test.js",
"test:ci": "FORCE_COLOR=false nyc --reporter=lcov mocha ./index.test.js",
"release": "standard-version"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"pre-push": "yarn test",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"**/*.{js,ts,md}": [
"prettier --write"
]
},
"engines": {
"node": ">=18.20.4"
},
"devDependencies": {
"@commitlint/cli": "11.0.0",
"@commitlint/config-conventional": "11.0.0",
"chai": "4.3.6",
"husky": "4.3.5",
"lint-staged": "10.5.3",
"mocha": "10.7.3",
"mock-fs": "5.2.0",
"nyc": "15.1.0",
"prettier": "3.3.3",
"sinon": "15.2.0",
"standard-version": "9.5.0"
},
"dependencies": {
"chalk": "4.1.2",
"deep-object-diff": "1.1.9",
"eslint-formatter-table": "7.32.1",
"node-emoji": "1.11.0"
}
}