@spinajs/templates-mjml 2.0.217

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +11 -0
  2. package/package.json +68 -0
package/README.md ADDED
@@ -0,0 +1,11 @@
1
+ # `email`
2
+
3
+ > TODO: description
4
+
5
+ ## Usage
6
+
7
+ ```
8
+ const email = require('email');
9
+
10
+ // TODO: DEMONSTRATE API
11
+ ```
package/package.json ADDED
@@ -0,0 +1,68 @@
1
+ {
2
+ "name": "@spinajs/templates-mjml",
3
+ "version": "2.0.217",
4
+ "description": "templates support for mjlm - for generating responsive emails",
5
+ "main": "lib/cjs/index.js",
6
+ "module": "lib/mjs/index.js",
7
+ "exports": {
8
+ ".": {
9
+ "import": "./lib/mjs/index.js",
10
+ "require": "./lib/cjs/index.js"
11
+ }
12
+ },
13
+ "type": "module",
14
+ "private": false,
15
+ "engines": {
16
+ "node": ">=16.11"
17
+ },
18
+ "scripts": {
19
+ "build": "npm run clean && npm run compile",
20
+ "compile": "tsc -b tsconfig.mjs.json",
21
+ "compile:cjs": "tsc -b tsconfig.cjs.json",
22
+ "rimraf": "./node_modules/rimraf/bin.js",
23
+ "clean": "rimraf lib/ && rimraf tsconfig.tsbuildinfo",
24
+ "test": "ts-mocha -p tsconfig.json test/**/*.test.ts",
25
+ "coverage": "nyc npm run test",
26
+ "build-docs": "rimraf docs && typedoc --options typedoc.json src/",
27
+ "format": "prettier --write \"src/**/*.ts\"",
28
+ "lint": "eslint -c .eslintrc.cjs --ext .ts src --fix",
29
+ "preversion": "npm run lint",
30
+ "version": "npm run format && git add -A src"
31
+
32
+ },
33
+ "files": [
34
+ "lib/**/*"
35
+ ],
36
+
37
+ "repository": {
38
+ "type": "git",
39
+ "url": "git+https://github.com/spinajs/main.git"
40
+ },
41
+ "keywords": [
42
+ "spinajs",
43
+ "http"
44
+ ],
45
+ "author": "SpinaJS <spinajs@coderush.pl> (https://github.com/spinajs/main)",
46
+ "license": "MIT",
47
+ "bugs": {
48
+ "url": "https://github.com/spinajs/main/issues"
49
+ },
50
+ "homepage": "https://github.com/spinajs/main#readme",
51
+ "devDependencies": {
52
+ "@types/luxon": "^3.2.0",
53
+ "@types/mocha": "10.0.1",
54
+ "@types/node": "^18.11.18",
55
+ "@types/pug": "^2.0.6"
56
+ },
57
+ "dependencies": {
58
+ "@spinajs/configuration": "^2.0.217",
59
+ "@spinajs/di": "^2.0.217",
60
+ "@spinajs/exceptions": "^2.0.217",
61
+ "@spinajs/intl": "^2.0.217",
62
+ "@spinajs/log": "^2.0.217",
63
+ "@spinajs/templates": "^2.0.217",
64
+ "mjml": "^4.15.3",
65
+ "tempfile": "4.0.0"
66
+ },
67
+ "gitHead": "002dc553b0ffffd72193d0121ac425a4083bc9ee"
68
+ }