-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
53 lines (53 loc) · 1.27 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
{
"name": "mjml-http-server",
"version": "0.1.0",
"description": "Dockerized mjml http server from https://github.com/shyim/mjml-server",
"main": "index.js",
"scripts": {
"test": "mocha"
},
"files": [
"/lib",
"index.js",
"LICENSE",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/danihodovic/mjml-http-server.git"
},
"author": "Dani Hodovic",
"license": "MIT",
"bugs": {
"url": "https://github.com/danihodovic/mjml-http-server/issues"
},
"bin": {
"mjml-http-server": "./index.js"
},
"homepage": "https://github.com/danihodovic/mjml-http-server#readme",
"dependencies": {
"body-parser": "^1.20.2",
"express": "^4.18.2",
"express-winston": "^4.2.0",
"install": "^0.13.0",
"mjml": "^4.15.3",
"node-graceful": "^3.1.0",
"winston": "^3.11.0",
"yargs": "^17.7.2"
},
"devDependencies": {
"axios": "^1.6.7",
"chai": "^4.2.0",
"eslint": "^7.13.0",
"eslint-config-standard": "^14.0.1",
"eslint-plugin-import": "^2.18.0",
"eslint-plugin-no-only-tests": "^2.3.1",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.1",
"mocha": "^10.3.0"
},
"engines": {
"node": ">=12.0.0"
}
}