@j1n/lint-a-lot
Version:
The purpose of this package is to wrap common eslint and stylelint extensions in order to set them up as quickly as possible for a angular-project. Also this project contains a `.editorconfig` that should be used.
88 lines (87 loc) • 2.24 kB
JSON
{
"name": "@j1n/lint-a-lot",
"version": "0.4.1",
"type": "module",
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/bundle.mjs",
"require": "./dist/bundle.cjs"
}
},
"scripts": {
"lint": "npx eslint",
"test": "node --experimental-vm-modules node_modules/.bin/jest",
"build": "rollup -c",
"build-and-pack": "npm run build && npm pack",
"prepare": "husky"
},
"lint-staged": {
"*.{js,cjs,mjs}": "eslint"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JanKru/lint-a-lot.git"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"peerDependencies": {
"eslint": "^9.21.0",
"stylelint": "^16.14.1",
"typescript-eslint": "^8.25.0"
},
"dependencies": {
"@eslint/js": "9.21.0",
"@rollup/plugin-terser": "0.4.4",
"@typescript-eslint/eslint-plugin": "8.23.0",
"@typescript-eslint/parser": "8.23.0",
"angular-eslint": "18.4.3",
"eslint-config-prettier": "10.0.1",
"eslint-import-resolver-typescript": "3.7.0",
"eslint-plugin-import-x": "4.6.1",
"eslint-plugin-jasmine": "4.2.2",
"eslint-plugin-prettier": "5.2.1",
"globals": "15.14.0",
"path": "0.12.7",
"stylelint-config-clean-order": "7.0.0",
"stylelint-config-standard-scss": "14.0.0",
"stylelint-no-unsupported-browser-features": "8.0.4",
"stylelint-order": "6.0.4",
"stylelint-prettier": "5.0.3"
},
"devDependencies": {
"@commitlint/cli": "19.7.1",
"@commitlint/config-conventional": "19.7.1",
"@jest/globals": "29.7.0",
"eslint": "9.21.0",
"eslint-config-prettier": "10.0.1",
"eslint-plugin-eslint-plugin": "6.4.0",
"eslint-plugin-n": "17.15.1",
"husky": "9.1.7",
"jest": "29.7.0",
"rollup": "4.34.6",
"rollup-plugin-copy": "3.5.0"
},
"author": "Jan Kruse",
"bugs": {
"url": "https://github.com/JanKru/lint-a-lot/issues"
},
"homepage": "https://github.com/JanKru/lint-a-lot",
"keywords": [
"eslint",
"stylelint",
"linting",
"angular",
"eslint-plugin",
"stylelint-config",
"typescript",
"scss",
"lint-rules",
"code-quality",
"best-practices"
]
}