-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathpackage.json
113 lines (113 loc) · 2.63 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "reserved-email-addresses-list",
"description": "List of 1250+ generic, admin, mailer-daemon, and no-reply usernames reserved for security concerns. Made for Forward Email <https//forwardemail.net>.",
"version": "2.0.14",
"author": "Nick Baugh <[email protected]> (http://niftylettuce.com/)",
"bugs": {
"url": "https://github.com/forwardemail/reserved-email-addresses-list/issues",
"email": "[email protected]"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"contributors": [
"Nick Baugh <[email protected]> (http://niftylettuce.com/)"
],
"devDependencies": {
"@commitlint/cli": "^17.6.3",
"@commitlint/config-conventional": "^17.6.3",
"ava": "^5.2.0",
"cross-env": "^7.0.3",
"eslint": "^8.39.0",
"eslint-config-xo-lass": "^2.0.1",
"fixpack": "^4.0.0",
"husky": "^8.0.3",
"lint-staged": "^13.2.2",
"nyc": "^15.1.0",
"prettier": "^2.8.8",
"remark-cli": "^11.0.0",
"remark-preset-github": "^4.0.4",
"xo": "^0.54.2"
},
"engines": {
"node": ">=8.3"
},
"exports": {
".": "./index.json",
"./admin-list": "./admin-list.json",
"./admin-list.json": "./admin-list.json",
"./no-reply-list": "./no-reply-list.json",
"./no-reply-list.json": "./no-reply-list.json",
"./array": "./index.json",
"./map": {
"import": "./map.mjs",
"require": "./map.cjs"
},
"./set": {
"import": "./set.mjs",
"require": "./set.cjs"
}
},
"files": [
"index.json",
"admin-list.json",
"no-reply-list.json",
"map.cjs",
"map.mjs",
"set.cjs",
"set.mjs"
],
"homepage": "https://github.com/forwardemail/reserved-email-addresses-list",
"keywords": [
"address",
"addresses",
"admin",
"daemon",
"domain",
"email",
"filter",
"first",
"generic",
"gmail",
"google",
"hostmaster",
"list",
"local",
"localpart",
"mail",
"mail",
"mailer",
"names",
"no-reply",
"noreply",
"parse",
"part",
"postmaster",
"reserved",
"reserved",
"restricted",
"sanitize",
"security",
"sensitive",
"smtp",
"subdomain",
"user",
"username",
"words"
],
"license": "MIT",
"main": "index.json",
"repository": {
"type": "git",
"url": "https://github.com/forwardemail/reserved-email-addresses-list"
},
"scripts": {
"ava": "cross-env NODE_ENV=test ava",
"lint": "xo --fix && remark . -qfo && fixpack && prettier --check *.json",
"prepare": "husky install",
"pretest": "npm run lint",
"test": "cross-env NODE_ENV=test nyc ava"
}
}