-
Notifications
You must be signed in to change notification settings - Fork 13
/
package.json
33 lines (33 loc) · 910 Bytes
/
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
{
"name": "mjml-utils",
"version": "2.2.1",
"author": "Justin Sisley",
"description": "The utility belt for MJML developers",
"repository": "https://github.com/justinsisley/mjml-utils",
"license": "MIT",
"main": "./src/mjml-utils.js",
"bin": {
"mjml-utils": "./src/mjml-utils.js",
"mju": "./src/mjml-utils.js"
},
"scripts": {
"lint": "eslint src",
"demo:watcher": "node ./src/mjml-utils.js --watch -i ./demo/templates/ -o ./demo/output/"
},
"dependencies": {
"chokidar": "^1.7.0",
"inquirer": "^3.3.0",
"mjml": "^3.3.5",
"nodemailer": "^4.2.0",
"yargs": "^9.0.1"
},
"devDependencies": {
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"eslint": "^3.19.0",
"eslint-config-airbnb": "^15.0.2",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.0.3",
"eslint-plugin-react": "^7.4.0"
}
}