-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathpackage.json
40 lines (40 loc) · 1.02 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{
"name": "address-rfc2822",
"version": "2.2.3",
"description": "RFC 2822 & 5322 (Header) email address parser",
"main": "index.js",
"files": [
"CHANGELOG.md"
],
"homepage": "https://github.com/haraka/node-address-rfc2822",
"keywords": [
"email",
"address",
"rfc822",
"rfc2822",
"rfc5322",
"mail",
"from"
],
"scripts": {
"format": "npm run prettier:fix && npm run lint:fix",
"lint": "npx eslint *.js test",
"lint:fix": "npx eslint *.js test --fix",
"prettier": "npx prettier . --check",
"prettier:fix": "npx prettier . --write --log-level=warn",
"test": "npx mocha@10",
"versions": "npx dependency-version-checker check",
"versions:fix": "npx dependency-version-checker update && npm run prettier:fix"
},
"repository": {
"type": "git",
"url": "https://github.com/haraka/node-address-rfc2822.git"
},
"devDependencies": {
"@haraka/eslint-config": "2.0.2"
},
"license": "MIT",
"dependencies": {
"email-addresses": "^5.0.0"
}
}