address-rfc2821
Version:
RFC-5321 (Envelope) email address parser
65 lines (64 loc) • 1.75 kB
JSON
{
"name": "address-rfc2821",
"version": "2.2.1",
"description": "RFC-5321 (Envelope) email address parser",
"author": {
"name": "The Haraka Team",
"url": "http://haraka.github.io"
},
"files": [
"CHANGELOG.md",
"grammar.js",
"index.d.ts"
],
"main": "index.js",
"types": "index.d.ts",
"homepage": "https://github.com/haraka/node-address-rfc2821",
"keywords": [
"email",
"envelope",
"address",
"rfc821",
"rfc2821",
"rfc5321",
"RFC-5321",
"mail",
"from"
],
"bugs": {
"url": "https://github.com/haraka/node-address-rfc2821/issues"
},
"engines": {
"node": ">= 20.20.0"
},
"scripts": {
"grammar": "npx -p nearley nearleyc grammar.ne -o grammar.js",
"lint": "npx eslint index.js test/*.js",
"lint:fix": "npx eslint --fix index.js test/*.js",
"prepack": "npm run grammar",
"test": "node --test test/*.js",
"test:coverage": "node --test --experimental-test-coverage test/*.js",
"test:coverage:lcov": "mkdir -p coverage && node --test --experimental-test-coverage --test-reporter=lcov --test-reporter-destination=coverage/lcov.info test/*.js",
"versions": "npx npm-dep-mgr check",
"format": "npm run prettier:fix && npm run lint:fix",
"prettier": "npx prettier . --check",
"prettier:fix": "npx prettier . --write --log-level=warn",
"versions:fix": "npx npm-dep-mgr update"
},
"repository": {
"type": "git",
"url": "https://github.com/haraka/node-address-rfc2821.git"
},
"devDependencies": {
"@haraka/eslint-config": "^2.0.4"
},
"license": "MIT",
"dependencies": {
"nearley": "^2.20.1",
"punycode": "^2.3.1"
},
"prettier": {
"singleQuote": true,
"semi": false
}
}