-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 1.6 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
{
"name": "@wavychat/mjml-parser",
"author": "Johann Buscail <[email protected]> (https://github.com/johannb75)",
"private": false,
"version": "1.2.0",
"description": "Easily convert MJML to HTML by using your favorite template engine to dynamically customize your mails !",
"license": "MIT",
"main": "build/index.js",
"types": "build/declaration/index.d.ts",
"scripts": {
"dev:start": "yarn build && concurrently \"tsc -w\" \"nodemon --trace-warnings\"",
"build": "tsc",
"recreate-build": "npx rimraf build && yarn build",
"dev:jest": "npx jest --watch --detectOpenHandles",
"release": "yarn recreate-build && npx standard-version && git push --follow-tags origin main && npm publish --access public",
"prepublish": "yarn recreate-build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/wavychat/mjml-parser.git"
},
"bugs": {
"url": "https://github.com/wavychat/mjml-parser/issues"
},
"homepage": "https://github.com/wavychat/mjml-parser/wiki",
"keywords": [
"template",
"email",
"mjml",
"parser",
"engine",
"template engine"
],
"devDependencies": {
"@types/ejs": "^3.1.0",
"@types/jest": "^27.0.2",
"@types/mjml": "^4.7.0",
"@types/mjml-core": "^4.7.1",
"@types/node": "^16.11.1",
"@types/underscore": "^1.11.3",
"concurrently": "^6.0.1",
"jest": "^27.2.5",
"nodemon": "^2.0.13",
"ts-jest": "^26.5.4",
"ts-node": "^10.3.0",
"typescript": "^4.4.4"
},
"dependencies": {
"ejs": "^3.1.6",
"handlebars": "^4.7.7",
"mjml": "^4.10.4",
"underscore": "^1.13.1"
}
}