mirror of
https://github.com/suitenumerique/meet.git
synced 2026-09-22 09:35:02 +02:00
Following @manuhabitela's recommendation, we've decided to switch from Yarn to npm for managing our Node.js dependencies. This update aligns all remaining parts of the codebase that were still using Yarn to now utilize npm.
23 lines
615 B
JSON
23 lines
615 B
JSON
{
|
|
"name": "mail_mjml",
|
|
"version": "0.1.3",
|
|
"description": "An util to generate html and text django's templates from mjml templates",
|
|
"type": "module",
|
|
"dependencies": {
|
|
"@html-to/text-cli": "0.5.4",
|
|
"mjml": "4.15.3"
|
|
},
|
|
"private": true,
|
|
"scripts": {
|
|
"build-mjml-to-html": "bash ./bin/mjml-to-html",
|
|
"build-html-to-plain-text": "bash ./bin/html-to-plain-text",
|
|
"build": "npm run build-mjml-to-html && npm run build-html-to-plain-text"
|
|
},
|
|
"volta": {
|
|
"node": "16.15.1"
|
|
},
|
|
"repository": "https://github.com/numerique-gouv/meet",
|
|
"author": "DINUM",
|
|
"license": "MIT"
|
|
}
|