{
  "name": "sort-package-json",
  "version": "1.57.0",
  "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/)",
  "main": "index.js",
  "types": "index.d.ts",
  "bin": "cli.js",
  "files": [
    "index.js",
    "index.d.ts",
    "cli.js"
  ],
  "scripts": {
    "lint": "eslint .",
    "semantic-release": "semantic-release",
    "sort-package-json": "node cli.js package.json --check",
    "test": "ava && dtslint --localTs node_modules/typescript/lib",
    "test-coverage": "nyc ava",
    "update-snapshot": "ava -u && node cli.js package.json"
  },
  "husky": {
    "hooks": {
      "pre-commit": "npm t && lint-staged",
      "commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
    }
  },
  "commitlint": {
    "extends": [
      "@commitlint/config-conventional"
    ]
  },
  "lint-staged": {
    "*.js": [
      "eslint --fix"
    ],
    "*.ts": [
      "prettier --write"
    ],
    "package.json": [
      "node cli.js"
    ]
  },
  "prettier": {
    "semi": false,
    "singleQuote": true,
    "trailingComma": "all"
  },
  "eslintConfig": {
    "extends": [
      "standard",
      "plugin:prettier/recommended"
    ]
  },
  "ava": {
    "verbose": true
  },
  "dependencies": {
    "detect-indent": "^6.0.0",
    "detect-newline": "3.1.0",
    "git-hooks-list": "1.0.3",
    "globby": "10.0.0",
    "is-plain-obj": "2.1.0",
    "sort-object-keys": "^1.1.3"
  },
  "devDependencies": {
    "@commitlint/cli": "8.3.5",
    "@commitlint/config-conventional": "8.3.4",
    "ava": "4.1.0",
    "del": "5.1.0",
    "dot-prop": "^5.2.0",
    "dtslint": "^4.0.5",
    "eslint": "^8.12.0",
    "eslint-config-prettier": "^8.5.0",
    "eslint-config-standard": "^17.0.0-1",
    "eslint-plugin-import": "^2.25.4",
    "eslint-plugin-n": "^14.0.0",
    "eslint-plugin-prettier": "^4.0.0",
    "eslint-plugin-promise": "^6.0.0",
    "husky": "^4.2.3",
    "lint-staged": "^10.0.8",
    "make-dir": "3.0.2",
    "nyc": "^15.0.0",
    "prettier": "^2.6.2",
    "semantic-release": "17.0.5",
    "tempy": "0.4.0",
    "typescript": "^4.0.5"
  }
}
