-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 880 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 880 Bytes
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
{
"name": "mjml2json",
"version": "1.0.1",
"description": "A package to convert a MJML template from XML to JSON",
"main": "lib/mjml2json.js",
"bin": {
"mjml2json": "lib/cli.js"
},
"scripts": {
"build": "babel src -d lib",
"lint": "eslint src test",
"prettier": "prettier --write \"{src,test}/**/*.js\"",
"test": "jest test/"
},
"license": "ISC",
"dependencies": {
"commander": "^2.11.0",
"htmlparser2": "^3.9.2",
"lodash": "^4.17.2",
"mjml": "^3.2.2"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-3": "^6.24.1",
"eslint": "^4.9.0",
"eslint-config-airbnb": "^16.0.0",
"eslint-config-airbnb-base": "^12.0.2",
"eslint-config-prettier": "^2.6.0",
"eslint-plugin-import": "^2.7.0",
"jest": "^21.2.1",
"prettier": "^1.7.4"
}
}