-
Notifications
You must be signed in to change notification settings - Fork 12
/
package.json
84 lines (84 loc) · 2.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
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
{
"name": "nodemailer-postmark-transport",
"description": "Postmark transport for Nodemailer",
"version": "6.0.0",
"main": "./index.js",
"types": "./index.d.ts",
"files": [
"lib/**.*",
"index.js",
"index.d.ts"
],
"engines": {
"node": ">=18"
},
"keywords": [
"nodemailer",
"postmark",
"transport",
"attachments"
],
"author": {
"name": "Alexey Kucherenko",
"url": "https://github.com/killmenot"
},
"license": "MIT",
"homepage": "https://github.com/killmenot/nodemailer-postmark-transport",
"repository": {
"type": "git",
"url": "[email protected]:killmenot/nodemailer-postmark-transport.git"
},
"bugs": {
"url": "https://github.com/killmenot/nodemailer-postmark-transport/issues"
},
"scripts": {
"bump:deps": "ncu --target minor -u",
"eslint": "eslint lib test index.js --fix",
"remark": "remark .",
"lint": "npm run eslint && npm run remark",
"test": "mocha",
"test-coverage": "nyc --reporter=html --reporter=text mocha",
"test-coveralls": "nyc report --reporter=text-lcov > ./coverage/lcov.info",
"prepare": "husky install"
},
"nyc": {
"all": true,
"include": [
"lib/**/*.js"
]
},
"remarkConfig": {
"plugins": [
"remark-preset-lint-recommended"
]
},
"dependencies": {
"addressparser": "^1.0.1",
"async": "^3.2.6",
"nodemailer-build-attachment": "^3.0.0",
"postmark": "^4.0.5"
},
"peerDependencies": {
"nodemailer": ">=6.x"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"chai": "^4.5.0",
"coveralls": "^3.1.1",
"dirty-chai": "^2.0.1",
"eslint": "^8.57.1",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^6.6.0",
"eslint-plugin-standard": "^4.1.0",
"husky": "^8.0.3",
"mocha": "^8.4.0",
"nodemailer": "^6.9.15",
"npm-check-updates": "^17.1.3",
"nyc": "^17.1.0",
"remark-cli": "^12.0.1",
"remark-preset-lint-recommended": "^7.0.0"
}
}