{
  "name": "@sterlingwes/microformats-parser",
  "version": "1.4.2",
  "description": "A JavaScript microformats v2 parser for the browser and node.js",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "homepage": "https://microformats.github.io/microformats-parser/",
  "repository": "https://github.com/microformats/microformats-parser.git",
  "author": "Aimee Gamble-Milner (https://github.com/aimee-gm)",
  "license": "MIT",
  "keywords": [
    "microformats",
    "parser",
    "mf2",
    "indieweb"
  ],
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "demo": "parcel serve demo/index.html",
    "demo:build": "parcel build demo/index.html --out-dir public --public-url ./",
    "build": "tsc",
    "lint": "eslint --cache './**/*.{ts,js}'",
    "prettier:list": "prettier '**/*.{ts,json,md,html}' --list-different",
    "prettier:fix": "prettier '**/*.{ts,json,md,html}' --write",
    "test": "nyc mocha --require ts-node/register test/**/*.spec.ts",
    "test:package": "mocha test/package.spec.js"
  },
  "engines": {
    "node": ">=10"
  },
  "files": [
    "/dist",
    "/CONTRIBUTING.md"
  ],
  "dependencies": {
    "parse5": "^6.0.0"
  },
  "devDependencies": {
    "@istanbuljs/nyc-config-typescript": "^1.0.1",
    "@types/chai": "^4.2.11",
    "@types/glob": "^7.1.1",
    "@types/mocha": "^8.0.0",
    "@types/node": "^14.14.10",
    "@types/parse5": "^6.0.0",
    "@typescript-eslint/eslint-plugin": "^4.0.0",
    "@typescript-eslint/parser": "^4.0.0",
    "chai": "^4.2.0",
    "eslint": "^7.1.0",
    "eslint-config-prettier": "^8.1.0",
    "eslint-plugin-import": "^2.20.2",
    "glob": "^7.1.6",
    "husky": ">=4",
    "lint-staged": ">=10",
    "microformat-tests": "https://github.com/microformats/tests",
    "mocha": "^8.0.1",
    "nyc": "^15.0.1",
    "parcel-bundler": "^1.12.4",
    "posthtml-expressions": "^1.4.0",
    "prettier": "^2.0.5",
    "source-map-support": "^0.5.19",
    "ts-node": "^9.0.0",
    "typescript": "^4.0.2"
  },
  "husky": {
    "hooks": {
      "pre-commit": "lint-staged"
    }
  },
  "lint-staged": {
    "*.{js,ts,json,css,md,html}": "prettier --write"
  },
  "nyc": {
    "extends": "@istanbuljs/nyc-config-typescript",
    "all": true,
    "check-coverage": true,
    "include": [
      "src/**"
    ],
    "branches": 100,
    "lines": 100,
    "functions": 100,
    "statements": 100
  }
}
