{
  "name": "@gasket/plugin-intl",
  "version": "7.5.4",
  "description": "NodeJS script to build localization files.",
  "main": "lib/index.js",
  "types": "lib/index.d.ts",
  "files": [
    "generator",
    "lib"
  ],
  "repository": "godaddy/gasket.git",
  "publishConfig": {
    "access": "public"
  },
  "keywords": [
    "gasket",
    "intl",
    "plugin"
  ],
  "author": "GoDaddy Operating Company, LLC",
  "license": "MIT",
  "bugs": "https://github.com/godaddy/gasket/issues",
  "homepage": "https://github.com/godaddy/gasket/tree/main/packages/gasket-plugin-intl",
  "dependencies": {
    "debug": "^4.4.0",
    "fs-extra": "^10.1.0",
    "glob": "^8.1.0",
    "intl": "^1.2.5",
    "negotiator": "^1.0.0",
    "semver": "^7.7.1",
    "@gasket/request": "^7.4.4"
  },
  "devDependencies": {
    "@types/jest": "^29.5.14",
    "@types/node": "^20.17.19",
    "cross-env": "^7.0.3",
    "eslint": "^8.57.1",
    "eslint-config-godaddy": "^7.1.1",
    "eslint-config-godaddy-typescript": "^4.0.3",
    "eslint-plugin-jest": "^27.9.0",
    "eslint-plugin-unicorn": "^55.0.0",
    "jest": "^29.7.0",
    "react": "^19.0.0",
    "react-intl": "^7.1.6",
    "typescript": "^5.8.2",
    "webpack": "^5.98.0",
    "@gasket/core": "^7.5.2",
    "@gasket/intl": "^7.4.0",
    "@gasket/plugin-data": "^7.4.4",
    "@gasket/plugin-command": "^7.4.2",
    "@gasket/plugin-elastic-apm": "^7.4.4",
    "@gasket/plugin-logger": "^7.3.5",
    "@gasket/plugin-metadata": "^7.4.4",
    "@gasket/plugin-service-worker": "^7.4.4",
    "@gasket/plugin-nextjs": "^7.5.6",
    "@gasket/react-intl": "^7.5.3",
    "create-gasket-app": "^7.4.7"
  },
  "eslintConfig": {
    "extends": [
      "godaddy",
      "plugin:jest/recommended",
      "plugin:jsdoc/recommended-typescript-flavor"
    ],
    "plugins": [
      "unicorn",
      "jsdoc"
    ],
    "rules": {
      "unicorn/filename-case": "error"
    },
    "overrides": [
      {
        "files": [
          "lib/*.ts"
        ],
        "extends": [
          "godaddy-typescript"
        ],
        "rules": {
          "jsdoc/*": "off"
        }
      }
    ]
  },
  "scripts": {
    "lint": "eslint .",
    "lint:fix": "pnpm run lint --fix",
    "posttest": "pnpm run lint && pnpm run typecheck",
    "test": "cross-env NODE_OPTIONS='--unhandled-rejections=strict --experimental-vm-modules' jest",
    "test:coverage": "pnpm run test --coverage",
    "test:watch": "pnpm run test --watch",
    "typecheck": "tsc",
    "typecheck:watch": "tsc --watch"
  }
}