-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 890 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 890 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": "mjml2html",
"version": "1.4.0",
"description": "Transform the MJML content to HTML",
"main": "index.js",
"repository": "github:chronotruck/mjml2html",
"scripts": {
"start": "node index.js",
"test": "jest test",
"test:watch": "jest --watchAll",
"lint": "eslint index.js test"
},
"author": "William DA SILVA <william.da.silva@chronotruck.com>",
"license": "MIT",
"jest": {
"testEnvironment": "node"
},
"dependencies": {
"body-parser": "^1.18.3",
"express": "^4.17.1",
"mjml": "^4.6.3"
},
"devDependencies": {
"eslint": "^7.3.0",
"eslint-config-standard": "^14.1.1",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-jest": "^23.13.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"jest": "^26.0.1",
"request": "^2.87.0"
}
}