@bernierllc/email-sender 3.1.0 → 5.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (1) hide show
  1. package/package.json +16 -15
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bernierllc/email-sender",
3
- "version": "3.1.0",
3
+ "version": "5.0.0",
4
4
  "description": "Email sending with provider-agnostic interface and SendGrid advanced features (templates, verified senders, rate limiting)",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -9,6 +9,17 @@
9
9
  "README.md",
10
10
  "LICENSE"
11
11
  ],
12
+ "scripts": {
13
+ "build": "tsc",
14
+ "test": "jest",
15
+ "test:run": "jest --watchAll=false",
16
+ "test:watch": "jest --watch",
17
+ "test:coverage": "jest --coverage",
18
+ "lint": "eslint src --ext .ts",
19
+ "lint:fix": "eslint src --ext .ts --fix",
20
+ "clean": "rm -rf dist",
21
+ "prebuild": "npm run clean"
22
+ },
12
23
  "keywords": [
13
24
  "email",
14
25
  "sender",
@@ -31,9 +42,9 @@
31
42
  "url": "https://github.com/bernier-llc/tools"
32
43
  },
33
44
  "peerDependencies": {
34
- "nodemailer": "^6.9.0",
45
+ "@sendgrid/mail": "^8.1.0",
35
46
  "aws-sdk": "^2.1000.0",
36
- "@sendgrid/mail": "^8.1.0"
47
+ "nodemailer": "^6.9.0"
37
48
  },
38
49
  "devDependencies": {
39
50
  "@types/jest": "^29.5.0",
@@ -51,15 +62,5 @@
51
62
  "access": "public",
52
63
  "registry": "https://registry.npmjs.org/"
53
64
  },
54
- "scripts": {
55
- "build": "tsc",
56
- "test": "jest",
57
- "test:run": "jest --watchAll=false",
58
- "test:watch": "jest --watch",
59
- "test:coverage": "jest --coverage",
60
- "lint": "eslint src --ext .ts",
61
- "lint:fix": "eslint src --ext .ts --fix",
62
- "clean": "rm -rf dist",
63
- "prebuild": "npm run clean"
64
- }
65
- }
65
+ "gitHead": "af7e74b3715d56d3a193e1bb6743b337c2b0df6d"
66
+ }