This repository has been archived by the owner on Jun 11, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
78 lines (78 loc) · 1.62 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
{
"name": "ses-email-client",
"version": "1.1.0",
"description": "Wrapper for sending emails with AWS SES supporting templates",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"test": "npm run lint && jest lib/src/**/*.js",
"clean": "rm -rf /coverage",
"lint": "semistandard | snazzy",
"lint:fix": "semistandard --fix",
"example": "node example/example.js"
},
"keywords": [
"AWS-SES",
"SES",
"ejs",
"handlebars",
"mjml",
"email"
],
"files": [
"lib/**/*",
"!lib/**/*.spec.js",
"!lib/**/__mocks__/*"
],
"dependencies": {
"aws-sdk": "^2.918.0",
"ejs": "^3.1.6",
"file-type": "^16.5.0",
"handlebars": "^4.7.7",
"hashlru": "^2.3.0",
"mjml": "^4.9.3",
"nodemailer": "^6.6.1"
},
"devDependencies": {
"jest": "^27.0.3",
"semistandard": "^16.0.0",
"snazzy": "^9.0.0"
},
"jest": {
"collectCoverage": true,
"verbose": true,
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.js$",
"moduleFileExtensions": [
"js"
],
"collectCoverageFrom": [
"lib/src/**/*.js",
"!src/**/*/index.js",
"!src/index.js"
],
"coverageThreshold": {
"global": {
"branches": 90,
"functions": 90,
"lines": 90,
"statements": 90
}
}
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"repository": {
"url": "https://github.com/gkampitakis/ses-email-client"
},
"semistandard": {
"ignore": [
"**/__mocks__/**"
],
"env": [
"jest"
]
},
"author": "Georgios Kampitakis",
"license": "MIT"
}