forked from forwardemail/email-templates
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
109 lines (109 loc) · 2.64 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
{
"name": "email-templates",
"description": "Node.js module for rendering beautiful emails with ejs, jade, swig, hbs, or handlebars templates and email-friendly inline CSS using juice.",
"version": "2.5.4",
"author": "Nick Baugh <niftylettuce@gmail.com>",
"contributors": [
{
"name": "Nick Baugh",
"email": "niftylettuce@gmail.com"
},
{
"name": "Andrea Baccega",
"email": "vekexasia@gmail.com"
},
{
"name": "Nic Jansma",
"web": "http://nicj.net"
},
{
"name": "Jason Sims",
"email": "sims.jrobert@gmail.com"
},
{
"name": "Miguel Mota",
"email": "hello@miguelmota.com"
},
{
"name": "Jeduan Cornejo",
"email": "jeduan@gmail.com"
},
{
"name": "Alberto Souza",
"email": "contato@albertosouza.net"
}
],
"keywords": [
"node-email-templates",
"windows",
"ejs",
"email",
"templates",
"email-templates",
"juice",
"inline",
"i18n",
"css"
],
"homepage": "https://github.com/niftylettuce/node-email-templates",
"repository": {
"type": "git",
"url": "https://github.com/niftylettuce/node-email-templates.git"
},
"engines": {
"node": ">= 0.10"
},
"main": "lib/main.js",
"scripts": {
"prepublish": "npm run compile && npm prune",
"compile": "babel src --modules common --out-dir lib",
"watch": "babel src --watch --modules common --out-dir lib --source-maps true",
"test": "standard && mocha",
"test-cov": "istanbul cover node_modules/mocha/bin/_mocha -- --reporter dot",
"test-travis": "istanbul cover node_modules/mocha/bin/_mocha --report lcovonly"
},
"dependencies": {
"bluebird": "^3.0.0",
"consolidate": "^0.14.2",
"debug": "^2.2.0",
"glob": "^6.0.0",
"juice": "^2.0.0",
"lodash": "^4.0.1"
},
"devDependencies": {
"async": "^1.5.0",
"babel-cli": "^6.4.5",
"babel-preset-es2015": "^6.3.13",
"babel-register": "^6.4.3",
"chai": "^3.0.0",
"dustjs-linkedin": "^2.4.0",
"ejs": "^2.3.0",
"handlebars": "^4.0.0",
"istanbul": "^0.4.2",
"jade": "^1.3.1",
"less": "^2.5.0",
"mkdirp": "^0.5.1",
"mocha": "^2.1.0",
"node-sass": "^3.1.1",
"nodemailer": "^1.3.4",
"nodemailer-wellknown": "^0.1.5",
"postmark": "^1.0.0",
"rimraf": "^2.2.8",
"sinon": "^1.10.2",
"sinon-chai": "^2.7.0",
"standard": "^5.4.1",
"styl": "^0.2.7",
"stylus": "^0.53.0",
"swig": "^1.3.2"
},
"standard": {
"ignore": [
"lib",
"examples"
]
},
"license": "MIT",
"bugs": {
"url": "https://github.com/niftylettuce/node-email-templates/issues/new"
}
}