{
  "name": "next-translate-zem",
  "version": "0.11.1",
  "description": "Next.js utility to translate pages without the need of a server (static i18n pages generator).",
  "license": "MIT",
  "keywords": [],
  "scripts": {
    "build": "yarn clean && NODE_ENV=production babel src -d .",
    "clean": "rm -f *.js && yarn clean:examples",
    "clean:examples": "rm -rf examples/**/.next && rm -rf examples/**/node_modules && rm -rf examples/**/yarn.lock",
    "example:static-site": "yarn build && cd examples/static-site && yarn && yarn dev",
    "example:with-server": "yarn build && cd examples/with-server && yarn && yarn dev",
    "format": "pretty-quick",
    "prepublish": "yarn test && yarn build",
    "test": "NODE_ENV=test jest",
    "test:coverage": "NODE_ENV=test jest --coverage",
    "test:watch": "NODE_ENV=test jest --watch"
  },
  "bin": {
    "next-translate": "./cli/builder.js"
  },
  "devDependencies": {
    "@babel/cli": "7.8.4",
    "@babel/core": "7.8.7",
    "@babel/preset-env": "7.8.7",
    "@testing-library/react": "10.0.1",
    "babel-jest": "25.1.0",
    "babel-plugin-transform-es2015-modules-commonjs": "6.26.2",
    "babel-preset-minify": "0.5.1",
    "express": "4.17.1",
    "husky": "4.2.3",
    "jest": "25.1.0",
    "next": "9.3.0",
    "prettier": "1.19.1",
    "pretty-quick": "2.0.1",
    "react": "16.13.0",
    "react-dom": "16.13.0",
    "supertest": "4.0.2"
  },
  "peerDependencies": {
    "next": ">= 9.3.0",
    "react": ">= 16.8.0"
  },
  "husky": {
    "hooks": {
      "pre-commit": "pretty-quick --staged && yarn test"
    }
  },
  "prettier": {
    "trailingComma": "es5",
    "tabWidth": 2,
    "semi": false,
    "singleQuote": true
  },
  "jest": {
    "roots": [
      "<rootDir>/__tests__",
      "<rootDir>/src"
    ],
    "transform": {
      "^.+\\.jsx?$": "babel-jest"
    }
  }
}
