{
  "name": "remark-shortcodes",
  "version": "0.3.1",
  "description": "Shortcode parser plugin for Remark",
  "main": "index.js",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/djm/remark-shortcodes.git"
  },
  "keywords": [
    "markdown",
    "remark",
    "shortcodes"
  ],
  "author": "Darian Moody <mail@djm.org.uk>",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/djm/remark-shortcodes"
  },
  "homepage": "https://github.com/djm/remark-shortcodes",
  "peerDependencies": {
    "remark-parse": ">=3.0.0"
  },
  "files": [
    "index.js"
  ],
  "devDependencies": {
    "browserify": "^14.4.0",
    "esmangle": "^1.0.1",
    "nyc": "^11.2.1",
    "prettier": "^1.6.1",
    "remark": "^8.0.0",
    "remark-cli": "^4.0.0",
    "tape": "^4.8.0"
  },
  "scripts": {
    "build-bundle": "browserify index.js -s remarkShortcodes > remark-shortcodes.js",
    "build-mangle": "esmangle remark-shortcodes.js > remark-shortcodes.min.js",
    "build": "npm run build-bundle && npm run build-mangle",
    "format": "prettier --write 'index.js'",
    "test-code": "node test.js",
    "test-coverage": "nyc --reporter lcov tape test.js",
    "test": "npm run build && npm run test-coverage"
  }
}
