{
  "name": "handlebars-to-jsx",
  "version": "0.1.5",
  "author": "Danakt Frost <danakt@protonmail.com>",
  "license": "MIT",
  "description": "Converts Handlebars template to React component",
  "main": "dist/index.js",
  "scripts": {
    "watch": "tsc --watch",
    "test": "jest",
    "build": "tsc",
    "prepublishOnly": "tsc",
    "pretest": "tsc"
  },
  "keywords": [
    "handlebars",
    "jsx",
    "react",
    "converter"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/danakt/handlebars-to-jsx.git"
  },
  "bugs": {
    "url": "https://github.com/danakt/handlebars-to-jsx/issues"
  },
  "homepage": "https://github.com/danakt/handlebars-to-jsx",
  "typings": "index.d.ts",
  "devDependencies": {
    "@types/babel__generator": "^7.0.2",
    "@types/eslint": "^4.16.6",
    "@types/jest": "^27.4.0",
    "@types/node": "^12.6.8",
    "@types/object-hash": "^1.3.0",
    "@types/prettier": "^1.18.0",
    "eslint": "^8.6.0",
    "eslint-config-prettier": "^6.0.0",
    "eslint-config-standard": "^13.0.1",
    "eslint-plugin-arca": "^0.8.1",
    "eslint-plugin-import": "^2.18.2",
    "eslint-plugin-node": "^9.1.0",
    "eslint-plugin-prettier": "^3.1.0",
    "eslint-plugin-promise": "^4.2.1",
    "eslint-plugin-react": "^7.14.2",
    "eslint-plugin-standard": "^4.0.0",
    "eslint-plugin-typescript": "^0.14.0",
    "husky": "^3.0.1",
    "jest": "^26.0.1",
    "prettier": "^1.18.2",
    "ts-jest": "^26.1.0",
    "ts-node": "^8.3.0",
    "typescript": "^3.5.3",
    "typescript-eslint-parser": "^22.0.0"
  },
  "dependencies": {
    "@babel/generator": "^7.5.5",
    "@babel/parser": "^7.5.5",
    "@babel/types": "^7.5.5",
    "@glimmer/syntax": "^0.38.4",
    "is-self-closing": "^1.0.1",
    "react-attr-converter": "^0.3.1",
    "reserved-words": "^0.1.2"
  },
  "jest": {
    "moduleFileExtensions": [
      "ts",
      "tsx",
      "js",
      "json"
    ],
    "transform": {
      "^.+\\.(ts|tsx)$": "ts-jest"
    },
    "globals": {
      "ts-jest": {
        "tsConfig": "tsconfig.json"
      }
    },
    "testMatch": [
      "**/tests/*.+(ts|tsx|js)"
    ],
    "collectCoverage": true,
    "collectCoverageFrom": [
      "lib/**",
      "ui/**"
    ]
  },
  "husky": {
    "hooks": {
      "pre-push": "npm run build && npm test"
    }
  }
}
