{
  "name": "html-attribute-sorter",
  "version": "0.4.3",
  "description": "An html attribute sorter",
  "main": "dist/main.js",
  "types": "./dist/types/main.d.ts",
  "scripts": {
    "build": "cross-env NODE_ENV=production node esbuild.ts",
    "watch": "node esbuild.ts",
    "test": "yarn build && node --experimental-vm-modules ./node_modules/.bin/jest",
    "lint": "eslint . --ext .ts",
    "fix": "eslint . --ext .ts --fix",
    "prepublish": "tsc src/main.ts --declaration --emitDeclarationOnly --outDir ./dist/types || true",
    "format": "yarn run format:ts",
    "format:ts": "prettier {src,__tests__}/**/*.{ts,json} -w",
    "format:check": "prettier {src,__tests__}/**/*.{ts,json} -c",
    "prepare": "husky install",
    "benchmark": "yarn run build && node benchmark/run.js"
  },
  "author": "Shuhei Hayashibara",
  "license": "MIT",
  "devDependencies": {
    "@types/jest": "^28.0.0",
    "@typescript-eslint/eslint-plugin": "^5.12.1",
    "@typescript-eslint/parser": "^5.12.1",
    "benny": "^3.7.1",
    "codecov": "^3.8.3",
    "cross-env": "^7.0.3",
    "esbuild": "^0.15.0",
    "esbuild-node-externals": "^1.4.1",
    "eslint": "^8.9.0",
    "eslint-config-prettier": "^8.4.0",
    "husky": "^7.0.4",
    "jest": "^28.0.0",
    "lint-staged": "^12.3.4",
    "prettier": "^2.5.1",
    "prettier-plugin-tailwindcss": "^0.1.7",
    "ts-jest": "^28.0.0",
    "ts-node": "^10.5.0",
    "typescript": "^4.5.5"
  },
  "dependencies": {},
  "files": [
    "dist",
    "src",
    "CHANGELOG.md"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/shufo/html-attribute-sorter.git"
  },
  "publishConfig": {
    "access": "public"
  },
  "lint-staged": {
    "*.ts": "yarn run fix && yarn run format"
  },
  "keywords": [
    "html",
    "sorter"
  ],
  "engines": {
    "node": ">= 12.0.0"
  }
}
