-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
34 lines (34 loc) · 1.01 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
{
"name": "email-template-manager",
"version": "1.1.2",
"description": "generador de templates html con moustache, pensado para pdf y email",
"main": "lib/template-manager.js",
"scripts": {
"init": "npm i && npm run build && npm run doc",
"start": "node main.js",
"build": "babel -d lib src --source-maps",
"test": "nodemon -e pug,js --ignore output,scripts --exec babel-node test",
"doc": "jsdoc ./src -d documentation -c .jsdoc -r"
},
"author": "",
"license": "ISC",
"dependencies": {
"fs-extra": "^8.1.0",
"handlebars": "^4.1.2",
"html-minifier": "^3.5.20",
"is-valid-path": "^0.1.1",
"mime": "^2.3.1",
"mjml": "^4.4.0-beta.2",
"path": "^0.12.7",
"pug": "^2.0.4"
},
"devDependencies": {
"babel-cli": "^6.26.0",
"babel-plugin-add-module-exports": "^1.0.0",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-minify": "^0.5.0",
"jsdoc": "^3.5.5",
"nodemon": "^1.18.4"
}
}