forked from haraka/node-address-rfc2821
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.13 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
41
42
43
44
45
46
47
{
"name": "address-rfc2821",
"version": "1.2.1",
"description": "RFC-5321 (Envelope) email address parser",
"author": {
"name": "The Haraka Team",
"url": "http://haraka.github.io"
},
"main": "index.js",
"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"
},
"scripts": {
"grammar": "npx nearleyc grammar.ne -o grammar.js",
"cover": "NODE_ENV=cov npx nyc --reporter=lcovonly npm run test",
"lint": "npx eslint index.js test/*.js",
"lintfix": "npx eslint --fix index.js test/*.js",
"postinstall": "npx -p nearley nearleyc grammar.ne -o grammar.js",
"test": "npx mocha"
},
"repository": {
"type": "git",
"url": "https://github.com/haraka/node-address-rfc2821.git"
},
"devDependencies": {
"eslint": "*",
"eslint-plugin-haraka": "*",
"mocha": "*"
},
"license": "MIT",
"dependencies": {
"nearley": "^2.20.1",
"punycode": "^2.1.0"
}
}