{
  "name": "dgram-as-promised",
  "version": "6.0.0",
  "description": "Promisify dgram module",
  "type": "module",
  "exports": {
    ".": {
      "default": "./lib/dgram-as-promised.js",
      "typings": "./lib/dgram-as-promised.d.ts"
    }
  },
  "main": "lib/dgram-as-promised.js",
  "typings": "lib/dgram-as-promised.d.ts",
  "repository": {
    "type": "git",
    "url": "https://github.com/dex4er/js-dgram-as-promised"
  },
  "keywords": [
    "promise",
    "dgram"
  ],
  "author": "Piotr Roszatycki",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/dex4er/js-dgram-as-promised/issues"
  },
  "homepage": "http://github.com/dex4er/js-dgram-as-promised",
  "engines": {
    "node": ">=16.0.0"
  },
  "devDependencies": {
    "@eslint/js": "^9.5.0",
    "@tsconfig/node16": "^16.1.3",
    "@types/chai": "^4.3.16",
    "@types/chai-as-promised": "^7.1.8",
    "@types/core-js": "^2.5.8",
    "@types/dns-packet": "^5.6.5",
    "@types/eslint__js": "^8.42.3",
    "@types/mocha": "^10.0.6",
    "@types/node": "^20.14.7",
    "@types/semver": "^7.5.8",
    "@types/wtfnode": "^0.7.3",
    "@typescript-eslint/parser": "^7.13.1",
    "c8": "^10.1.2",
    "chai": "^5.1.1",
    "chai-as-promised": "^8.0.0",
    "coveralls": "^3.1.1",
    "dns-packet": "^5.6.1",
    "eslint": "^8.57.0",
    "eslint-config-prettier": "^9.1.0",
    "markdownlint-cli": "^0.41.0",
    "mocha": "^10.4.0",
    "mocha-steps": "^1.3.0",
    "prettier": "^3.3.2",
    "semver": "^7.6.2",
    "shx": "^0.3.4",
    "ts-node": "^10.9.2",
    "tslib": "^2.6.3",
    "typescript": "^5.5.2",
    "typescript-eslint": "^7.13.1",
    "wtfnode": "^0.9.2"
  },
  "scripts": {
    "compile": "tsc --pretty --project .",
    "clean": "npm run clean:compile && npm run clean:coverage",
    "clean:compile": "shx rm -rf lib",
    "clean:coverage": "shx rm -rf coverage .nyc_output",
    "lint": "npm run lint:tsc:src && npm run lint:tsc:test && npm run lint:tsc:examples && npm run lint:eslint && npm run lint:prettier && npm run lint:markdownlint",
    "lint:tsc:examples": "tsc --noEmit --pretty --project examples",
    "lint:tsc:src": "tsc --noEmit --pretty --project .",
    "lint:tsc:test": "tsc --noEmit --pretty --project test",
    "lint:eslint": "eslint .",
    "lint:prettier": "prettier --ignore-path .gitignore --list-different '**/*.{js,json,md,ts,yml}'",
    "lint:markdownlint": "markdownlint \"*.md\"",
    "prepack": "npm run compile",
    "prepublishOnly": "npm run test",
    "pretest": "npm run lint",
    "test": "npm run test:spec",
    "test:spec": "mocha",
    "test:coverage": "npm run test:coverage:spec && npm run test:coverage:report",
    "test:coverage:spec": "c8 --no-clean --reporter=lcov npm run test:spec",
    "test:coverage:report": "c8 report --reporter=text-summary --color"
  }
}
