eslint-plugin-beautiful-sort
Version:
eslint plugin for imports sort by their type
84 lines (83 loc) • 2.27 kB
JSON
{
"name": "eslint-plugin-beautiful-sort",
"version": "4.0.1",
"description": "eslint plugin for imports sort by their type",
"main": "dist/index.js",
"type": "commonjs",
"author": "https://github.com/allohamora",
"license": "MIT",
"scripts": {
"test": "jest",
"build": "rimraf dist && tsc --project tsconfig.build.json",
"prepare": "husky",
"format": "prettier .",
"format:fix": "prettier --write .",
"release": "standard-version --tag-prefix=",
"release:minor": "standard-version --release-as minor --tag-prefix=",
"release:patch": "standard-version --release-as patch --tag-prefix=",
"release:major": "standard-version --release-as major --tag-prefix=",
"lint": "eslint \"src/**/*.ts\"",
"lint:fix": "eslint \"src/**/*.ts\" --fix",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage"
},
"devDependencies": {
"@commitlint/cli": "^20.4.3",
"@commitlint/config-conventional": "^20.4.3",
"@eslint/js": "^10.0.1",
"@types/eslint": "^9.6.1",
"@types/jest": "^30.0.0",
"eslint": "^10.0.3",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-eslint-plugin": "^7.3.2",
"eslint-plugin-prettier": "^5.5.5",
"globals": "^17.4.0",
"husky": "^9.1.7",
"jest": "^30.2.0",
"lint-staged": "^16.3.2",
"prettier": "^3.8.1",
"rimraf": "^6.1.3",
"standard-version": "^9.5.0",
"ts-jest": "^29.4.6",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1"
},
"keywords": [
"eslint",
"plugin",
"sort",
"import",
"imports-sort",
"sort-imports"
],
"repository": {
"type": "git",
"url": "git+https://github.com/allohamora/eslint-plugin-beautiful-sort.git"
},
"bugs": {
"url": "https://github.com/allohamora/eslint-plugin-beautiful-sort/issues"
},
"homepage": "https://github.com/allohamora/eslint-plugin-beautiful-sort#readme",
"files": [
"dist"
],
"peerDependencies": {
"eslint": ">=9.0.0"
},
"engines": {
"node": ">=18.18.0",
"npm": ">=9.0.0"
},
"lint-staged": {
"*.{js,json,yml,md}": "prettier --write",
"*.ts": [
"eslint --fix",
"jest --findRelatedTests"
]
},
"standard-version": {
"skip": {
"tag": true
}
}
}