forked from killmenot/nodemailer-postmark-transport
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
83 lines (83 loc) · 2.11 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
{
"name": "nodemailer-postmark-transport",
"description": "Postmark transport for Nodemailer",
"version": "5.0.0",
"main": "index.js",
"files": [
"lib/**.*",
"index.js"
],
"engines": {
"node": ">=8"
},
"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:travis": "npm install && npm install nodemailer@$NODEMAILER_VERSION && npm test",
"coverage": "nyc --reporter=html --reporter=text mocha",
"coveralls": "nyc report --reporter=text-lcov | coveralls",
"prepare": "husky install"
},
"nyc": {
"all": true,
"include": [
"lib/**/*.js"
]
},
"remarkConfig": {
"plugins": [
"remark-preset-lint-recommended"
]
},
"dependencies": {
"addressparser": "^1.0.1",
"async": "^3.2.0",
"nodemailer-build-attachment": "^3.0.0",
"postmark": "^2.7.4"
},
"peerDependencies": {
"nodemailer": ">=4.x"
},
"devDependencies": {
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"chai": "^4.3.4",
"coveralls": "^3.1.0",
"dirty-chai": "^2.0.1",
"eslint": "^7.26.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.23.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.3.1",
"eslint-plugin-standard": "^4.1.0",
"husky": "^6.0.0",
"mocha": "^8.4.0",
"nodemailer": "^6.6.0",
"npm-check-updates": "^11.5.13",
"nyc": "^15.1.0",
"remark-cli": "^9.0.0",
"remark-preset-lint-recommended": "^5.0.0"
}
}