{
  "title": "Paged Plugin for [DocPad](http://docpad.org)",
  "name": "docpad-plugin-paged",
  "version": "2.6.0",
  "description": "DocPad plugin which adds the ability to render a document out to multiple pages",
  "homepage": "ssh://git@github.com/docpad/docpad-plugin-paged",
  "license": "MIT",
  "keywords": [
    "docpad",
    "docpad-plugin",
    "paging",
    "pagination",
    "paged"
  ],
  "badges": {
    "list": [
      "travisci",
      "npmversion",
      "npmdownloads",
      "daviddm",
      "daviddmdev",
      "---",
      "patreon",
      "opencollective",
      "flattr",
      "paypal",
      "bitcoin",
      "wishlist",
      "---",
      "slackin"
    ],
    "config": {
      "patreonUsername": "bevry",
      "opencollectiveUsername": "bevry",
      "flattrUsername": "balupton",
      "paypalURL": "https://bevry.me/paypal",
      "bitcoinURL": "https://bevry.me/bitcoin",
      "wishlistURL": "https://bevry.me/wishlist",
      "slackinURL": "https://slack.bevry.me"
    }
  },
  "author": "2012+ Ben Delarre <ben@delarre.net> (http://www.delarre.net)",
  "maintainers": [
    "Ben Delarre <ben@delarre.net> (http://www.delarre.net)",
    "Benjamin Lupton <b@lupton.cc> (http://balupton.com)",
    "Daniel Smith (http://www.stormpoopersmith.com)"
  ],
  "contributors": [
    "Ben Delarre <ben@delarre.net> (http://www.delarre.net)",
    "Benjamin Lupton <b@lupton.cc> (http://balupton.com)",
    "Daniel Smith (http://www.stormpoopersmith.com)",
    "Rob Loach <robloach@gmail.com> (http://robloach.net)",
    "Daniel Cohen <dcohenb@gmail.com> (http://dcb.co.il)",
    "vsopvsop (https://github.com/vsopvsop)"
  ],
  "bugs": {
    "url": "ssh://git@github.com/docpad/docpad-plugin-paged/issues"
  },
  "repository": {
    "type": "git",
    "url": "ssh://git@github.com/docpad/docpad-plugin-paged.git"
  },
  "engines": {
    "node": ">=0.8"
  },
  "editions": [
    {
      "description": "Source + CoffeeScript + Require",
      "directory": "source",
      "entry": "paged.plugin.coffee",
      "syntaxes": [
        "coffeescript",
        "require"
      ]
    },
    {
      "description": "CoffeeScript Compiled + ESNext + Require",
      "directory": "esnext",
      "entry": "paged.plugin.js",
      "syntaxes": [
        "javascript",
        "esnext",
        "require"
      ]
    },
    {
      "description": "CoffeeScript Compiled + ES2015 + Require",
      "directory": "es2015",
      "entry": "paged.plugin.js",
      "syntaxes": [
        "javascript",
        "es2015",
        "require"
      ]
    }
  ],
  "main": "index.js",
  "dependencies": {
    "editions": "^1.3.4",
    "taskgroup": "^5.0.1"
  },
  "devDependencies": {
    "babel-core": "^6.26.3",
    "babel-preset-es2015": "^6.24.1",
    "coffeelint": "^2.1.0",
    "coffeescript": "^2.3.1",
    "docpad": "^6.79.4",
    "projectz": "^1.4.0"
  },
  "peerDependencies": {
    "docpad": ">=6.46.4 <7"
  },
  "scripts": {
    "our:setup": "npm run our:setup:npm && npm run our:setup:docpad",
    "our:setup:npm": "npm install",
    "our:setup:docpad": "bash ./docpad-setup.sh",
    "our:clean": "rm -Rf ./docs ./es2015 ./es5 ./out",
    "our:compile": "npm run our:compile:coffee:esnext && npm run our:compile:coffee:es2015",
    "our:compile:coffee:esnext": "coffee -bco ./esnext ./source",
    "our:compile:coffee:es2015": "coffee -bcto ./es2015 ./source",
    "our:meta": "npm run our:meta:projectz",
    "our:meta:projectz": "projectz compile",
    "our:verify": "npm run our:verify:coffeelint",
    "our:verify:coffeelint": "coffeelint ./source",
    "our:deploy": "echo no need for this project",
    "our:test": "npm run our:verify && npm test",
    "our:release": "npm run our:release:prepare && npm run our:release:check-changelog && npm run our:release:check-dirty && npm run our:release:tag && npm run our:release:push",
    "our:release:prepare": "npm run our:clean && npm run our:compile && npm run our:test && npm run our:meta",
    "our:release:check-changelog": "cat ./HISTORY.md | grep v$npm_package_version || (echo add a changelog entry for v$npm_package_version && exit -1)",
    "our:release:check-dirty": "git diff --exit-code",
    "our:release:tag": "export MESSAGE=$(cat ./HISTORY.md | sed -n \"/## v$npm_package_version/,/##/p\" | sed 's/## //' | awk 'NR>1{print buf}{buf = $0}') && test \"$MESSAGE\" || (echo 'proper changelog entry not found' && exit -1) && git tag v$npm_package_version -am \"$MESSAGE\"",
    "our:release:push": "git push origin master && git push origin --tags",
    "test": "node --harmony ./test.js --joe-reporter=console"
  }
}
