{
  "name": "pseudo-localization",
  "version": "2.4.0",
  "description": "Dynamic pseudo-localization in the browser and nodejs",
  "main": "./dist/cjs/index.js",
  "types": "./dist/index.d.ts",
  "files": [
    "dist",
    "bin"
  ],
  "bin": "./bin/pseudo-localize",
  "scripts": {
    "start": "node devserver.mjs",
    "prepare": "npm run tsc && npm run transpile-cjs",
    "transpile-cjs": "babel src --out-dir dist/cjs --minified --no-comments --source-maps --extensions '.ts'",
    "generate-types": "tsc --emitDeclarationOnly",
    "check-formatting": "prettier --list-different src/**/*.ts",
    "format": "prettier --write src/**/*.ts",
    "lint": "eslint src/**/*.js",
    "test-js": "jest src/*",
    "test": "npm run test-js jest && npm run check-formatting && npm run check-types && npm run lint",
    "check-types": "tsc --noEmit",
    "tsc": "tsc"
  },
  "author": "Tryggvi Gylfason (http://twitter.com/tryggvigy)",
  "keywords": [
    "internationalization",
    "localization",
    "pseudo-localization",
    "l10n",
    "i18n",
    "pseudo",
    "language",
    "translation",
    "pseudo-localize"
  ],
  "repository": {
    "type": "git",
    "url": "https://github.com/tryggvigy/pseudo-localization.git"
  },
  "license": "MIT",
  "devDependencies": {
    "@babel/cli": "^7.5.5",
    "@babel/core": "^7.5.5",
    "@babel/plugin-transform-modules-commonjs": "^7.18.6",
    "@babel/preset-env": "^7.5.5",
    "@babel/preset-typescript": "^7.18.6",
    "@types/node": "^18.7.9",
    "eslint": "^6.1.0",
    "jest": "^28.1.3",
    "jest-cli": "^28.1.3",
    "prettier": "^1.19.1"
  },
  "dependencies": {
    "flat": "^5.0.2",
    "get-stdin": "^7.0.0",
    "typescript": "^4.7.4",
    "yargs": "^17.2.1"
  }
}
