-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
executable file
·48 lines (48 loc) · 1022 Bytes
/
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": "gulp-sendgrid",
"version": "0.0.3",
"description": "Send email templates to SendGrid",
"license": "MIT",
"repository": "kevnk/gulp-sendgrid",
"author": {
"name": "Kevin Kirchner",
"email": "[email protected]",
"url": "https://github.com/kevnk"
},
"engines": {
"node": ">=0.10.0"
},
"scripts": {
"test": "mocha"
},
"files": [
"index.js",
"lib/sendgrid.js"
],
"keywords": [
"gulpplugin",
"sendgrid",
"email",
"templates"
],
"dependencies": {
"chalk": "~0.4.0",
"cheerio": "~0.17.0",
"cli-table": "~0.3.0",
"dateformat": "~1.0.8-1.2.3",
"event-stream": "~3.1.5",
"gulp-util": "~2.2.14",
"lodash.kebabcase": "^4.1.1",
"lodash.startcase": "^4.4.0",
"lodash.tolower": "^4.1.2",
"nodemailer": "~0.7.0",
"request": "~2.36.0",
"sendgrid": "^4.7.1",
"xmlbuilder": "~2.2.1"
},
"devDependencies": {
"chai": "~1.9.1",
"lodash.kebabcase": "^4.1.1",
"mocha": "~1.20.1"
}
}