-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
68 lines (68 loc) · 2.11 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
{
"name": "email-generator",
"version": "0.0.1",
"description": "📨 Simple CLI to generate responsive emails using MJML for templating and handlebars for interpolation. Implementation using SOLID principles.",
"main": "src/main.ts",
"scripts": {
"tsc": "tsc",
"build": "npm run tsc",
"start": "npm run build && node dist/main",
"lint": "npx --no-install eslint . --ext .ts",
"test": "npx --no-install jest",
"prepare": "husky install",
"release": "npx standard-version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/mikecabana/email-generator.git"
},
"keywords": [
"mjml",
"handlebars",
"email",
"generator",
"typescript"
],
"author": {
"name": "Mike Cabana",
"email": "[email protected]",
"url": "https://mikecabana.com"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/mikecabana/email-generator/issues"
},
"homepage": "https://github.com/mikecabana/email-generator#readme",
"devDependencies": {
"@commitlint/cli": "^14.1.0",
"@commitlint/config-conventional": "^14.1.0",
"@types/handlebars": "^4.1.0",
"@types/jest": "^27.0.2",
"@types/mjml": "^4.0.4",
"@types/node": "^14.14.9",
"@types/nodemailer": "^6.4.0",
"@types/yargs": "^15.0.10",
"@typescript-eslint/eslint-plugin": "^5.3.1",
"@typescript-eslint/parser": "^5.3.1",
"cpx": "^1.5.0",
"dotenv": "^8.2.0",
"eslint": "^8.2.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-prettier": "^4.0.0",
"husky": "^7.0.4",
"jest": "^27.3.1",
"prettier": "^2.4.1",
"standard-version": "^9.3.2",
"ts-jest": "^27.0.7",
"ts-node": "^8.10.2",
"typescript": "^4.1.2"
},
"dependencies": {
"handlebars": "^4.7.7",
"mjml": "^4.10.4",
"nodemailer": "^6.4.16",
"reflect-metadata": "^0.1.13",
"tsyringe": "^4.4.0",
"yargs": "^16.1.1"
}
}