-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
49 lines (49 loc) · 1.09 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
{
"name": "tempmail-detect",
"version": "0.1.0",
"description": "node module to detect temporary email addresses known for spam",
"main": "index.js",
"type": "module",
"keywords": [
"spammail",
"spam-mail",
"is-tempmail",
"temp-mail",
"mail",
"disposable",
"disposable emails",
"detector"
],
"scripts": {
"build": "node build.js",
"release": "release-it"
},
"author": {
"name": "Philipp Dormann",
"email": "[email protected]",
"url": "https://philippdormann.de"
},
"license": "MIT",
"devDependencies": {
"auto-changelog": "^2.4.0",
"release-it": "^14.12.4"
},
"release-it": {
"git": {
"commit": true,
"requireBranch": "main",
"requireCleanWorkingDir": false,
"commitMessage": "🚀RELEASE v${version}",
"push": true,
"tag": true,
"tagName": "v${version}",
"tagAnnotation": "v${version}"
},
"npm": {
"publish": false
},
"hooks": {
"after:bump": "auto-changelog --commit-limit false -p -u --hide-credit && node build.js . && git add ."
}
}
}