-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
72 lines (72 loc) · 1.81 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "@mvsde/mailbox",
"version": "0.10.3",
"description": "Small wrapper around MJML and Nodemailer for (awesome) HTML emails",
"scripts": {
"lint": "node --run lint:js && node --run lint:format",
"lint:js": "eslint",
"lint:format": "prettier --check .",
"test": "node --run test:unit && node --run test:create && node --run test:build",
"test:unit": "c8 --all --reporter text --reporter html ava --verbose",
"test:create": "node bin/mailbox create test/create",
"test:dev": "cd template && node ../bin/mailbox dev",
"test:build": "cd template && node ../bin/mailbox build",
"test:test": "cd template && node ../bin/mailbox test",
"format": "prettier --write .",
"version": "conventional-changelog --preset angular --infile CHANGELOG.md --same-file && git add CHANGELOG.md",
"prepack": "rm --recursive template/dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mvsde/mailbox.git"
},
"keywords": [
"email",
"html",
"mjml",
"nodemailer",
"nunjucks"
],
"author": {
"name": "Fynn Becker",
"email": "post@fynn.be",
"url": "https://fynn.be"
},
"homepage": "https://github.com/mvsde/mailbox#readme",
"license": "MIT",
"bugs": {
"url": "https://github.com/mvsde/mailbox/issues"
},
"bin": {
"mailbox": "bin/mailbox.js"
},
"files": [
"bin",
"commands",
"lib",
"template"
],
"dependencies": {
"chokidar": "^4.0.3",
"commander": "^12.1.0",
"deepmerge": "^4.3.1",
"kleur": "^4.1.5",
"nodemailer": "^6.9.16",
"nunjucks": "^3.2.4",
"prompts": "^2.4.2",
"ws": "^8.18.0"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"ava": "^6.2.0",
"c8": "^10.1.3",
"conventional-changelog-cli": "^5.0.0",
"eslint": "^9.17.0",
"globals": "^15.14.0",
"mjml": "^4.15.3",
"prettier": "^3.4.2"
},
"peerDependencies": {
"mjml": "^4.15.3"
}
}