{
  "name": "next-export",
  "version": "0.1.7",
  "description": "Export next.js sites to be served statically",
  "main": "index.js",
  "bin": {
    "next-export": "./cli.js",
    "next-export-fix": "./next-export-fix.js"
  },
  "scripts": {
    "test": "echo \"Error: no test specified\" && exit 1",
    "fix-line-endings-cli": "mv cli.js cli.old.js && cat cli.old.js | tr -d '\r' > cli.js",
    "fix-line-endings-next-export-fix": "mv next-export-fix.js next-export-fix.old.js && cat next-export-fix.old.js | tr -d '\r' > next-export-fix.js",
    "v-patch": "npm version patch && git push --tags && npm publish && git push",
    "v-minor": "npm version minor && git push --tags && npm publish && git push",
    "v-major": "npm version major && git push --tags && npm publish && git push"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/tscanlin/next-export.git"
  },
  "keywords": [
    "next",
    "next.js",
    "export",
    "static"
  ],
  "author": "Tim Scanlin",
  "license": "MIT",
  "dependencies": {
    "del": "^2.2.2",
    "fs-extra": "^3.0.1",
    "glob": "^7.1.1",
    "glob-promise": "^3.1.0",
    "minimist": "^1.2.0",
    "mkdirp": "^0.5.1"
  },
  "peerDependencies": {
    "next": "^2.3.1",
    "react": "^15.5.4",
    "react-dom": "^15.5.4"
  }
}
