-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
76 lines (76 loc) · 1.97 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
{
"name": "nodemailer-base64-to-s3",
"description": "Convert your Base64-Encoded Data URI's in <img> tags to Amazon S3/CloudFront URL's",
"version": "4.0.1",
"author": "Nick Baugh <[email protected]> (http://niftylettuce.com/)",
"ava": {
"failFast": true,
"verbose": true
},
"bugs": {
"url": "https://github.com/forwardemail/nodemailer-base64-to-s3/issues",
"email": "[email protected]"
},
"contributors": [
"Nick Baugh <[email protected]> (http://niftylettuce.com/)"
],
"dependencies": {
"@aws-sdk/client-s3": "^3.373.0",
"debug": "^4.3.4",
"is-string-and-not-blank": "^0.0.2",
"lodash": "^4.17.21",
"mime-types": "^2.1.35",
"rev-hash": "3",
"sharp": "^0.30.6"
},
"devDependencies": {
"@commitlint/cli": "^17.0.2",
"@commitlint/config-conventional": "^17.0.2",
"ava": "^4.3.0",
"cheerio": "^1.0.0-rc.11",
"cross-env": "^7.0.3",
"dotenv": "^16.0.1",
"eslint": "8.39.0",
"eslint-config-xo-lass": "^2.0.1",
"fixpack": "^4.0.0",
"husky": "^8.0.3",
"image-to-uri": "^1.0.0",
"lint-staged": "^13.0.1",
"ms": "^2.1.3",
"nodemailer": "^6.7.5",
"nyc": "^15.1.0",
"remark-cli": "^10.0.1",
"remark-preset-github": "^4.0.4",
"validator": "^13.7.0",
"xo": "^0.50.0"
},
"engines": {
"node": ">=14"
},
"files": [
"index.js"
],
"homepage": "https://github.com/forwardemail/nodemailer-base64-to-s3",
"keywords": [
"lass",
"nodemailer-base64-to-s3"
],
"license": "MIT",
"main": "index.js",
"prettier": {
"singleQuote": true,
"bracketSpacing": true,
"trailingComma": "none"
},
"repository": {
"type": "git",
"url": "https://github.com/forwardemail/nodemailer-base64-to-s3"
},
"scripts": {
"lint": "xo --fix && remark . -qfo && fixpack",
"prepare": "husky install",
"pretest": "npm run lint",
"test": "npm run test-coverage",
"test-coverage": "cross-env NODE_ENV=test nyc ava"
}
}