@haraka/eslint-config
Version:
eslint config for Haraka projects
52 lines (51 loc) • 1.31 kB
JSON
{
"name": "@haraka/eslint-config",
"version": "3.0.0",
"description": "eslint config for Haraka projects",
"keywords": [
"haraka",
"lint",
"eslint",
"eslintconfig",
"test"
],
"type": "module",
"main": "index.js",
"files": [
"CHANGELOG.md",
"rules"
],
"scripts": {
"format": "npm run prettier:fix && npm run lint:fix",
"format:check": "npm run prettier && npm run lint",
"lint": "npx eslint *.js",
"lint:fix": "npx eslint *.js --fix",
"prettier": "npx prettier . --check",
"prettier:fix": "npx prettier . --write --log-level=warn",
"test": "node index.js",
"test:coverage": "npx c8 --reporter=text --reporter=text-summary npm test",
"versions": "npx npm-dep-mgr check",
"versions:fix": "npx npm-dep-mgr update"
},
"repository": {
"type": "git",
"url": "git+https://github.com/haraka/haraka-eslint.git"
},
"author": "Matt Simerson <matt@tnpi.net>",
"license": "MIT",
"bugs": {
"url": "https://github.com/haraka/haraka-eslint/issues"
},
"homepage": "https://github.com/haraka/haraka-eslint#readme",
"dependencies": {
"@eslint/js": "^10.0.1",
"globals": "^17.6.0"
},
"peerDependencies": {
"eslint": "^10.0.0"
},
"prettier": {
"singleQuote": true,
"semi": false
}
}