{
  "name": "property-sort",
  "version": "2.1.0",
  "description": "Sort an array by its property",
  "type": "module",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "scripts": {
    "test": "jest",
    "cleanup": "rm -rf ./dist",
    "build": "npm run cleanup && tsc",
    "deploy:latest": "npm run build && npm publish",
    "deploy:next": "npm run build && npm publish --tag next",
    "lint": "eslint . --ext .ts",
    "bump:major": "standard-version --release-as=major",
    "bump:minor": "standard-version --release-as=minor",
    "bump:patch": "standard-version --release-as=patch",
    "bump:pre:major": "standard-version --release-as=major --prerelease",
    "bump:pre:next": "standard-version --prerelease next"
  },
  "dependencies": {
    "language-code": "^1.0.0"
  },
  "devDependencies": {
    "@babel/plugin-proposal-class-properties": "^7.12.1",
    "@babel/plugin-transform-typescript": "^7.12.1",
    "@babel/preset-env": "^7.12.1",
    "@types/jest": "^27.4.1",
    "@typescript-eslint/eslint-plugin": "^5.17.0",
    "@typescript-eslint/parser": "^5.17.0",
    "babel-jest": "^27.5.1",
    "eslint": "^8.12.0",
    "jest": "^27.5.1",
    "standard-version": "^9.3.2",
    "ts-jest": "^27.1.4",
    "ts-loader": "^9.2.8",
    "typescript": "^4.6.3"
  },
  "keywords": [
    "typescript",
    "javascript",
    "property",
    "sort",
    "ordering",
    "alphabetically",
    "nummerically",
    "ascending",
    "descending",
    "array"
  ],
  "files": [
    "dist",
    "README.md"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/AronssonFredrik/property-sort.git"
  },
  "bugs": {
    "url": "https://github.com/AronssonFredrik/property-sort/issues"
  },
  "homepage": "https://github.com/AronssonFredrik/property-sort#readme",
  "author": "Fredrik Aronsson",
  "license": "ISC"
}
