-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
77 lines (77 loc) · 1.74 KB
/
package.json
File metadata and controls
77 lines (77 loc) · 1.74 KB
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
{
"name": "nodemailer-trap-plugin",
"version": "4.0.0",
"description": "Nodemailer plugin to intercept emails in non production environments",
"main": "index.js",
"types": "./index.d.ts",
"files": [
"lib/**.*",
"index.js"
],
"engines": {
"node": ">=18"
},
"author": {
"name": "Alexey Kucherenko",
"url": "https://github.com/killmenot"
},
"keywords": [
"nodemailer",
"plugin",
"trap",
"interceptor",
"staging",
"non production",
"environment"
],
"license": "MIT",
"homepage": "https://github.com/killmenot/nodemailer-trap-plugin",
"repository": {
"type": "git",
"url": "git@github.com:killmenot/nodemailer-trap-plugin.git"
},
"bugs": {
"url": "https://github.com/killmenot/nodemailer-trap-plugin/issues"
},
"scripts": {
"eslint": "eslint . --fix",
"remark": "remark .",
"lint": "npm run eslint && npm run remark",
"test": "mocha",
"coverage": "nyc --reporter=html --reporter=text --reporter=lcov mocha",
"prepare": "husky"
},
"nyc": {
"all": true,
"include": [
"lib/**/*.js"
],
"exclude": [
"test/**/*.js"
]
},
"remarkConfig": {
"plugins": [
"remark-preset-lint-recommended"
]
},
"dependencies": {
"addressparser": "^1.0.1",
"escape-string-regexp": "^4.0.0",
"string-format": "^2.0.0"
},
"devDependencies": {
"@commitlint/cli": "^17.8.1",
"@commitlint/config-conventional": "^17.8.1",
"@eslint/js": "^9.39.4",
"chai": "^4.5.0",
"eslint": "^9.39.4",
"eslint-plugin-mocha": "^10.5.0",
"globals": "^13.24.0",
"husky": "^9.1.7",
"mocha": "^10.8.2",
"nyc": "^18.0.0",
"remark-cli": "^8.0.1",
"remark-preset-lint-recommended": "^5.0.0"
}
}