UNPKG

node-email-mx-checker

Version:

A Node.js library to check MX records for domains

68 lines 1.82 kB
{ "name": "node-email-mx-checker", "version": "1.0.0", "description": "A Node.js library to check MX records for domains", "type": "module", "main": "./dist/index.cjs", "module": "./dist/index.js", "types": "./dist/index.d.ts", "exports": { ".": { "import": "./dist/index.js", "require": "./dist/index.cjs", "types": "./dist/index.d.ts" } }, "files": [ "dist", "LICENSE", "README.md" ], "scripts": { "dev": "vite build --watch", "build": "vite build", "preview": "vite preview", "test": "vitest run", "test:watch": "vitest", "lint": "eslint src --ext .ts", "prepublishOnly": "npm run build" }, "keywords": [ "mx", "dns", "email", "domain", "mx-records", "typescript" ], "author": "iiniit", "license": "MIT", "repository": { "type": "git", "url": "git+https://github.com/iiniit/node-email-mx-checker.git" }, "bugs": { "url": "https://github.com/iiniit/node-email-mx-checker/issues" }, "publishConfig": { "access": "public" }, "homepage": "https://github.com/iiniit/node-email-mx-checker#readme", "devDependencies": { "@types/node": "^20.4.5", "@typescript-eslint/eslint-plugin": "^6.2.0", "@typescript-eslint/parser": "^6.2.0", "eslint": "^8.46.0", "typescript": "^5.1.6", "vite": "^5.0.0", "vite-plugin-dts": "^3.6.0", "vitest": "^0.34.0" }, "engines": { "node": ">=14.0.0" }, "dependencies": { "dns": "^0.2.2", "util": "^0.12.5" } }