eslint-plugin-beautiful-sort
Version:
eslint plugin for imports sort by their type
80 lines (79 loc) • 2.23 kB
JSON
{
"name": "eslint-plugin-beautiful-sort",
"version": "3.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 install",
"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": "^17.5.1",
"@commitlint/config-conventional": "^17.4.4",
"@types/eslint": "^8.37.0",
"@types/jest": "^29.5.0",
"@typescript-eslint/eslint-plugin": "^5.57.1",
"@typescript-eslint/parser": "^5.57.1",
"eslint": "^8.38.0",
"eslint-config-prettier": "^8.8.0",
"eslint-plugin-beautiful-sort": "^2.0.4",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.3",
"jest": "^29.5.0",
"lint-staged": "^13.2.1",
"prettier": "^2.8.7",
"rimraf": "^4.4.1",
"standard-version": "^9.5.0",
"ts-jest": "^29.1.0",
"typescript": "^5.0.4"
},
"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"
],
"engines": {
"node": ">=18.14.0",
"npm": ">=9.3.1"
},
"lint-staged": {
"*.{js,json,yml,md}": "prettier --write",
"*.ts": [
"eslint --fix",
"jest --findRelatedTests"
]
},
"standard-version": {
"skip": {
"tag": true
}
}
}