-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
50 lines (50 loc) · 1.29 KB
/
package.json
File metadata and controls
50 lines (50 loc) · 1.29 KB
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
{
"name": "markdown-mail",
"version": "0.0.4",
"description": "📬 Turn your Markdown files into Responsive HTML E-Mails.",
"main": "lib/index.mjs",
"types": "lib/index.d.mts",
"bin": "lib/bin.mjs",
"scripts": {
"start": "npm run dev",
"dev": "npm run build && npm-run-all --parallel dev:*",
"dev:tsc": "tsc --watch",
"dev:nodemon": "nodemon --watch lib --exec \"node lib/bin.mjs\"",
"build": "rimraf lib && tsc",
"prepublishOnly": "npm run build"
},
"keywords": [
"markdown",
"md",
"email",
"mail"
],
"repository": {
"type": "git",
"url": "git+https://github.com/yandeu/markdown-mail.git"
},
"author": "Yannick Deubel https://github.com/yandeu",
"license": "MIT",
"bugs": {
"url": "https://github.com/yandeu/markdown-mail/issues"
},
"homepage": "https://github.com/yandeu/markdown-mail#readme",
"dependencies": {
"@yandeu/parse-markdown": "^0.0.2",
"express": "^4.18.2",
"five-server": "^0.1.7",
"juice": "^8.1.0",
"node-cli": "^0.2.5"
},
"devDependencies": {
"@types/express": "^4.17.15",
"@types/node": "^18.11.17",
"nodemon": "^2.0.20",
"npm-run-all": "^4.1.5",
"rimraf": "^3.0.2",
"typescript": "^4.9.4"
},
"funding": {
"url": "https://github.com/sponsors/yandeu"
}
}