{
  "name": "sort-package-json",
  "version": "2.5.1",
  "description": "Sort an Object or package.json based on the well-known package.json keys",
  "keywords": [
    "keys",
    "object",
    "sort"
  ],
  "homepage": "https://github.com/keithamus/sort-package-json#readme",
  "bugs": {
    "url": "https://github.com/keithamus/sort-package-json/issues"
  },
  "repository": {
    "type": "git",
    "url": "git+ssh://git@github.com/keithamus/sort-package-json.git"
  },
  "license": "MIT",
  "author": "Keith Cirkel <npm@keithcirkel.co.uk> (http://keithcirkel.co.uk/)",
  "type": "module",
  "exports": "./index.js",
  "types": "index.d.ts",
  "bin": "cli.js",
  "files": [
    "index.js",
    "index.d.ts",
    "cli.js",
    "reporter.js"
  ],
  "scripts": {
    "fix": "eslint . --fix && prettier . \"!**/*.js\" --write && node cli.js \"package.json\"",
    "lint": "eslint . && prettier . \"!**/*.js\" --check && node cli.js \"package.json\" --check",
    "prepare": "husky install",
    "semantic-release": "semantic-release",
    "test": "ava && dtslint --localTs node_modules/typescript/lib",
    "test-coverage": "nyc ava",
    "update-snapshots": "ava --update-snapshots"
  },
  "commitlint": {
    "extends": [
      "@commitlint/config-conventional"
    ]
  },
  "lint-staged": {
    "package.json": [
      "node cli.js"
    ],
    "*.js": [
      "eslint --fix"
    ],
    "**/*,!*.js": [
      "prettier --write --ignore-unkown"
    ]
  },
  "prettier": {
    "semi": false,
    "singleQuote": true,
    "trailingComma": "all"
  },
  "eslintConfig": {
    "extends": [
      "standard",
      "plugin:prettier/recommended"
    ]
  },
  "ava": {
    "verbose": true
  },
  "dependencies": {
    "detect-indent": "^7.0.1",
    "detect-newline": "^4.0.0",
    "get-stdin": "^9.0.0",
    "git-hooks-list": "^3.0.0",
    "globby": "^13.1.2",
    "is-plain-obj": "^4.1.0",
    "sort-object-keys": "^1.1.3"
  },
  "devDependencies": {
    "@commitlint/cli": "^17.1.2",
    "@commitlint/config-conventional": "^17.1.0",
    "ava": "^4.3.3",
    "del": "^7.0.0",
    "dot-prop": "^7.2.0",
    "dtslint": "^4.2.1",
    "eslint": "^8.24.0",
    "eslint-config-prettier": "^8.5.0",
    "eslint-config-standard": "^17.0.0",
    "eslint-plugin-import": "^2.26.0",
    "eslint-plugin-n": "^15.3.0",
    "eslint-plugin-prettier": "^4.2.1",
    "eslint-plugin-promise": "^6.0.1",
    "husky": "^8.0.1",
    "lint-staged": "^13.0.3",
    "make-dir": "^3.1.0",
    "nyc": "^15.1.0",
    "prettier": "^2.7.1",
    "resolve": "^1.22.1",
    "semantic-release": "^19.0.5",
    "tempy": "^2.0.0",
    "typescript": "^4.8.4"
  }
}
