{
  "name": "@biesbjerg/ngx-translate-extract",
  "version": "7.0.4",
  "description": "Extract strings from projects using ngx-translate",
  "main": "dist/index.js",
  "typings": "dist/index.d.ts",
  "files": [
    "bin/",
    "dist/"
  ],
  "bin": {
    "ngx-translate-extract": "bin/cli.js"
  },
  "scripts": {
    "build": "npm run clean && tsc",
    "watch": "npm run clean && tsc --watch",
    "clean": "rimraf ./dist",
    "lint": "tslint --force './src/**/*.ts'",
    "test": "mocha -r ts-node/register tests/**/*.spec.ts"
  },
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged && npm test"
    }
  },
  "prettier": {
    "trailingComma": "none",
    "printWidth": 145,
    "useTabs": true,
    "singleQuote": true
  },
  "lint-staged": {
    "{src,tests}/**/*.{ts}": [
      "tslint --project tsconfig.json -c tslint.commit.json --fix",
      "prettier --write"
    ]
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/biesbjerg/ngx-translate-extract.git"
  },
  "keywords": [
    "angular",
    "ionic",
    "ngx-translate",
    "extract",
    "extractor",
    "translate",
    "translation",
    "i18n",
    "gettext"
  ],
  "author": "Kim Biesbjerg <kim@biesbjerg.com>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/biesbjerg/ngx-translate-extract/issues"
  },
  "homepage": "https://github.com/biesbjerg/ngx-translate-extract",
  "engines": {
    "node": ">=11.15.0"
  },
  "config": {},
  "devDependencies": {
    "@angular/compiler": "^11.2.9",
    "@types/braces": "^3.0.0",
    "@types/chai": "^4.2.16",
    "@types/flat": "^5.0.1",
    "@types/gettext-parser": "4.0.0",
    "@types/glob": "^7.1.3",
    "@types/mkdirp": "^1.0.1",
    "@types/mocha": "^8.2.2",
    "@types/node": "^14.14.37",
    "@types/yargs": "^16.0.1",
    "braces": "^3.0.2",
    "chai": "^4.3.4",
    "husky": "^6.0.0",
    "lint-staged": "^10.5.4",
    "mocha": "^8.3.2",
    "prettier": "^2.2.1",
    "rimraf": "^3.0.2",
    "ts-node": "^9.1.1",
    "tslint": "^6.1.3",
    "tslint-config-prettier": "^1.18.0",
    "tslint-eslint-rules": "^5.4.0",
    "tslint-etc": "^1.13.9",
    "typescript": "^4.2.4"
  },
  "peerDependencies": {
    "@angular/compiler": ">=8.0.0",
    "typescript": ">=3.0.0"
  },
  "dependencies": {
    "@phenomnomnominal/tsquery": "^4.1.1",
    "boxen": "^5.0.1",
    "colorette": "^1.2.2",
    "flat": "^5.0.2",
    "gettext-parser": "^4.0.4",
    "glob": "^7.1.6",
    "mkdirp": "^1.0.4",
    "path": "^0.12.7",
    "terminal-link": "^2.1.1",
    "yargs": "^16.2.0"
  }
}