-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
57 lines (57 loc) · 1.29 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
{
"name": "email-template",
"version": "1.0.0",
"description": "Email template using the MJML language for smooth and effortless development.",
"scripts": {
"start": "concurrently \"yarn bs\" \"yarn mjml\"",
"bs": "browser-sync start --config ./.config/browsersync.js",
"mjml": "mjml -w ./src/**/*.mjml -o ./dist/",
"build": "rm -rf dist/ && mkdir dist && mjml -v ./src/**/*.mjml && mjml ./src/**/*.mjml -o ./dist/"
},
"repository": {
"type": "git",
"url": "git@github.com:three11/email-template.git"
},
"keywords": [
"email",
"template",
"mjml",
"browser-sync",
"easy-email"
],
"authors": [
{
"name": "Three 11 Ltd",
"email": "hello@three-11.com",
"role": "Developer"
},
{
"name": "Alexander Panayotov",
"email": "alexander.panayotov@gmail.com",
"role": "Developer"
},
{
"name": "Atanas Atanasov",
"email": "scriptex.bg@gmail.com",
"role": "Developer"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/three11/email-template/issues"
},
"homepage": "https://github.com/three11/email-template#readme",
"dependencies": {},
"devDependencies": {
"browser-sync": "2.29.3",
"concurrently": "8.2.2",
"mjml": "4.15.3",
"yargs": "17.7.2"
},
"browserslist": [
"> 1%",
"last 2 versions"
],
"main": "",
"private": true
}