-
Notifications
You must be signed in to change notification settings - Fork 228
/
package.json
57 lines (57 loc) · 1.22 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
{
"name": "grapesjs-mjml",
"version": "1.0.6",
"description": "MJML Componenets integration in GrapesJS",
"main": "dist/index.js",
"scripts": {
"lint": "eslint src",
"lint:fix": "eslint src --fix",
"v:patch": "npm version patch -m \"Release v%s\"",
"build": "grapesjs-cli build --patch=false",
"start": "grapesjs-cli serve",
"test": "jest"
},
"files": [
"/dist",
"/locale"
],
"repository": {
"type": "git",
"url": "https://github.com/GrapesJS/mjml.git"
},
"keywords": [
"grapesjs",
"plugin",
"mjml",
"wysiwyg"
],
"author": "Artur Arseniev",
"license": "BSD-3-Clause",
"dependencies": {
"@types/mjml": "^4.7.4",
"mjml-browser": "^4.13.0"
},
"babel": {
"env": {
"test": {
"presets": [
"@babel/preset-env",
"@babel/preset-typescript"
]
}
}
},
"devDependencies": {
"@babel/cli": "^7.15.7",
"@babel/preset-typescript": "^7.16.7",
"@types/jest": "^29.5.12",
"ajv": "^8.12.0",
"eslint": "^8.23.0",
"grapesjs": "^0.21.2",
"grapesjs-cli": "^4.1.1",
"jest": "^24.9.0",
"regenerator-runtime": "^0.14.1",
"underscore": "^1.13.1",
"whatwg-fetch": "^3.6.2"
}
}