{
  "name": "next-seo",
  "version": "4.29.0",
  "description": "SEO plugin for Next.js projects",
  "source": "src/index.tsx",
  "main": "lib/next-seo.js",
  "module": "lib/next-seo.module.js",
  "unpkg": "lib/next-seo.umd.js",
  "types": "lib/index.d.ts",
  "files": [
    "lib"
  ],
  "peerDependencies": {
    "next": "^8.1.1-canary.54 || >=9.0.0",
    "react": ">=16.0.0",
    "react-dom": ">=16.0.0"
  },
  "scripts": {
    "test": "jest",
    "test:watch": "jest --watch",
    "pretest:e2e:ci": "yarn e2e:build",
    "test:e2e": "npm-run-all --parallel e2e:dev cy:open",
    "test:e2e:ci": "npm-run-all --parallel --race e2e:start cy:run",
    "prepublishOnly": "yarn build",
    "prebuild": "rimraf ./lib",
    "lint": "eslint src",
    "format": "prettier",
    "table-of-contents": "doctoc README.md",
    "type-check": "tsc --noEmit",
    "type-check:watch": "yarn type-check -- --watch",
    "build": "yarn build:ts",
    "build:watch": "microbundle watch --no-sourcemap --no-compress --jsx React.createElement",
    "build:ts": "microbundle --no-sourcemap --no-compress --jsx React.createElement",
    "build:test": "npm-run-all --sequential build e2e:build",
    "cy:open": "cypress open",
    "cy:run": "cypress run",
    "e2e:dev": "yarn next e2e",
    "e2e:build": "yarn next build e2e",
    "e2e:start": "yarn next start e2e"
  },
  "prettier": {
    "singleQuote": true,
    "arrowParens": "avoid",
    "trailingComma": "all"
  },
  "author": {
    "name": "Gary Meehan",
    "email": "garymeehan@outlook.com"
  },
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/garmeeh/next-seo.git"
  },
  "keywords": [
    "next.js",
    "seo",
    "react",
    "node",
    "ssr"
  ],
  "bugs": {
    "url": "https://github.com/garmeeh/next-seo/issues"
  },
  "homepage": "https://github.com/garmeeh/next-seo#readme",
  "devDependencies": {
    "@cypress/schema-tools": "^4.7.1",
    "@types/jest": "^26.0.0",
    "@types/node": "^15.0.1",
    "@types/react": "^17.0.1",
    "@types/react-dom": "^17.0.1",
    "cypress": "^8.0.0",
    "cypress-testing-library": "^3.0.1",
    "doctoc": "^2.0.1",
    "eslint": "^7.28.0",
    "eslint-config-next": "^11.0.0",
    "eslint-plugin-cypress": "^2.11.3",
    "eslint-plugin-jest": "^24.3.6",
    "husky": "4.3.8",
    "jest": "^26.6.3",
    "lint-staged": "11.1.1",
    "microbundle": "^0.13.0",
    "next": "^11.0.0",
    "npm-run-all": "4.1.5",
    "prettier": "2.3.2",
    "react": "^17.0.1",
    "react-dom": "^17.0.1",
    "react-testing-library": "7.0.0",
    "rimraf": "3.0.2",
    "ts-jest": "^26.5.4",
    "typescript": "^4.2.2"
  },
  "husky": {
    "hooks": {
      "pre-commit": "yarn table-of-contents && git add README.md && lint-staged"
    }
  },
  "lint-staged": {
    "*.{js,jsx,json,css,md,ts,tsx}": [
      "prettier --write",
      "git add"
    ],
    "*.{ts,tsx}": []
  }
}
