{
  "name": "abnf",
  "description": "Augmented Backus-Naur Form (ABNF) parsing.  See RFC 5234.",
  "version": "5.0.4",
  "license": "Apache-2.0",
  "author": "Joe Hildebrand <joe-github@cursive.net>",
  "contributors": [
    {
      "name": "Dominique Hazaël-Massieux",
      "email": "dom@w3.org"
    },
    {
      "name": "ZP-ZPanda",
      "email": "zp.zpanda@gmail.com"
    },
    {
      "name": "Steven R. Loomis",
      "email": "srl295@codehivetx.us"
    }
  ],
  "homepage": "https://github.com/hildjj/node-abnf",
  "repository": {
    "url": "git://github.com/hildjj/node-abnf.git"
  },
  "keywords": [
    "grammar",
    "parser",
    "generator",
    "abnf",
    "Backus–Naur",
    "rfc",
    "rfc5234",
    "rfc7405"
  ],
  "bin": {
    "abnf_check": "bin/abnf_check.js",
    "abnf_ast": "bin/abnf_ast.js",
    "abnf_gen": "bin/abnf_gen.js",
    "abnf_test": "bin/abnf_test.js"
  },
  "main": "lib/abnf.js",
  "type": "module",
  "files": [
    "bin/",
    "lib/",
    "examples/core.abnf"
  ],
  "dependencies": {
    "commander": "^14.0.3",
    "peggy": "^5.1.0"
  },
  "engines": {
    "node": ">=20"
  }
}
