-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.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
{
"name": "sendgrid-template-helper",
"version": "1.0.6",
"description": "The Sendgrid wrapper helps to send an email with a dynamic template stored on disk.",
"main": "./lib/index.js",
"files": [
"/lib"
],
"directories": {
"lib": "lib",
"test": "test"
},
"scripts": {
"test": "mocha --timeout 20000 --exit",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/t-ho/sendgrid-template-helper.git"
},
"keywords": [
"SendGrid",
"Dynamic Template"
],
"author": "t-ho <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/t-ho/sendgrid-template-helper/issues"
},
"homepage": "https://tdev.app/sendgrid-template-helper",
"dependencies": {
"@sendgrid/client": "^7.6.2",
"@sendgrid/mail": "^7.6.2",
"lodash": "^4.17.21"
},
"devDependencies": {
"chai": "^4.3.6",
"husky": "^7.0.4",
"lint-staged": "^12.3.5",
"mocha": "^9.2.2",
"prettier": "^2.5.1",
"sinon": "^13.0.1",
"sinon-chai": "^3.7.0"
},
"lint-staged": {
"*.{js,css,md}": "prettier --write"
}
}