-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
67 lines (67 loc) · 1.56 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
58
59
60
61
62
63
64
65
66
67
{
"name": "@anny-co/mjml-server",
"version": "1.0.6",
"description": "Dockerized mjml http server from https://github.com/shyim/mjml-server",
"main": "index.js",
"scripts": {
"start": "node index.js",
"test": "mocha"
},
"files": [
"server.js",
"authentication.js",
"index.js",
"LICENSE",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/anny-co/mjml-server.git"
},
"author": "Dani Hodovic",
"contributors": [
{
"name": "Alexander Bartolomey",
"email": "[email protected]",
"url": "https://anny.co/"
},
{
"name": "Adriaan Wind",
"email": "[email protected]",
"url": "https://anny.co/"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/anny-co/mjml-server/issues"
},
"bin": {
"mjml-http-server": "./index.js"
},
"homepage": "https://github.com/anny-co/mjml-server#readme",
"dependencies": {
"basic-auth": "^2.0.1",
"dotenv": "^16.4.5",
"express": "^4.19.2",
"install": "^0.13.0",
"mjml": "4.15.3",
"node-graceful": "^3.1.0",
"pino": "^9.0.0",
"pino-http": "^10.2.0"
},
"devDependencies": {
"axios": "^1.7.2",
"chai": "^4.3.10",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.2",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-no-only-tests": "^3.1.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-promise": "^5.2.0",
"eslint-plugin-standard": "^5.0.0",
"mocha": "^10.4.0"
},
"engines": {
"node": ">=12.0.0"
}
}