-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.25 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
{
"name": "webpack-mjml-loader",
"version": "2.0.1",
"license": "MIT",
"author": "Victor Rebiard--Crépin",
"homepage": "https://github.com/BlitzBanana/webpack-mjml-loader#readme",
"repository": {
"type": "git",
"url": "https://github.com/BlitzBanana/webpack-mjml-loader.git"
},
"bugs": {
"url": "https://github.com/BlitzBanana/webpack-mjml-loader/issues"
},
"keywords": [
"webpack",
"webpack-loader",
"mjml",
"mjml4"
],
"main": "dist/index.js",
"module": "dist/webpack-mjml-loader.esm.js",
"typings": "dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"start": "tsdx watch",
"build": "tsdx build",
"test": "tsdx test",
"lint": "tsdx lint",
"release": "yarn build && np"
},
"peerDependencies": {
"mjml": ">=4.0.0"
},
"devDependencies": {
"@types/jest": "^29.2.4",
"@types/mjml": "^4.7.0",
"husky": "^8.0.2",
"memfs": "^3.4.12",
"mjml": "4.13.0",
"np": "^7.6.2",
"tsdx": "^0.14.1",
"tslib": "^2.4.1",
"typescript": "^4.9.4",
"webpack": "^5.75.0"
},
"husky": {
"hooks": {
"pre-commit": "tsdx lint"
}
},
"prettier": {
"printWidth": 80,
"semi": false,
"singleQuote": true,
"trailingComma": "es5"
}
}