-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
68 lines (68 loc) · 1.92 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
68
{
"name": "webpack-mjml-plugin",
"version": "2.1.3",
"description": "Webpack MJML plugin for compiling MJML files.",
"main": "index.js",
"scripts": {
"build": "webpack --progress",
"build:watch": "webpack --watch --progress",
"format": "prettier --config .prettierrc --write .",
"lint": "npm run lint:js",
"lint:fix": "npm run lint:js:fix",
"lint:js": "eslint .",
"lint:js:fix": "eslint . --fix",
"parse": "npm run format && npm run lint",
"semantic-release": "semantic-release",
"test": "npm run parse"
},
"repository": {
"type": "git",
"url": "git+https://github.com/matteobertoldo/webpack-mjml-plugin.git"
},
"keywords": [
"webpack",
"webpack-plugin",
"mjml",
"mjml-framework",
"mjml-to-html"
],
"author": "Matteo Bertoldo <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/matteobertoldo/webpack-mjml-plugin/issues"
},
"homepage": "https://github.com/matteobertoldo/webpack-mjml-plugin#readme",
"peerDependencies": {
"mjml": ">=4",
"webpack": ">=4"
},
"devDependencies": {
"@commitlint/cli": "^18.4.3",
"@commitlint/config-conventional": "^18.4.3",
"@prettier/plugin-xml": "^3.2.2",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/fs-extra": "^11.0.4",
"clean-terminal-webpack-plugin": "^3.0.0",
"clean-webpack-plugin": "^4.0.0",
"commitlint": "^18.4.3",
"eslint": "^8.55.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-prettier": "^5.0.1",
"husky": "^8.0.3",
"jest": "^29.7.0",
"lint-staged": "^15.2.0",
"prettier": "^3.1.1",
"semantic-release": "^20.1.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {
"fs-extra": "^11.2.0",
"glob": "^8.1.0"
},
"lint-staged": {
"*.{md,js,json,yml}": "prettier --write",
"*.js": "eslint --fix"
}
}