-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathpackage.json
37 lines (37 loc) · 858 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
{
"name": "swig-email-templates",
"version": "7.0.0",
"description": "Node.js module for rendering emails with swig templates and email-friendly inline CSS",
"main": "index.js",
"scripts": {
"test": "nyc mocha --reporter spec"
},
"bin": {
"swig-email-templates": "bin/swig-email-templates.js"
},
"repository": {
"type": "git",
"url": "git://github.com/andrewrk/swig-email-templates.git"
},
"author": "Andrew Kelley",
"contributors": [
"Andi Sidwell <andi@takkaria.org>"
],
"license": "MIT",
"engines": {
"node": ">=10"
},
"devDependencies": {
"eslint": "^8.19.0",
"mocha": "^10.0.0",
"nyc": "^15.1.0",
"pend": "^1.2.0"
},
"dependencies": {
"cheerio": "^0.22.0",
"html-to-text": "^8.2.0",
"juice": "^8.0.0",
"swig-templates": "^2.0.3",
"yargs": "^17.5.1"
}
}