-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
113 lines (113 loc) · 3.13 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
{
"name": "@faire/mjml-react",
"version": "3.0.0",
"license": "MIT",
"description": "React component library to generate the HTML emails on the fly",
"keywords": [
"email",
"mjml",
"react"
],
"author": "Ian Edington <[email protected]>",
"homepage": "https://github.com/Faire/mjml-react",
"repository": {
"type": "git",
"url": "git+https://github.com/Faire/mjml-react.git"
},
"bugs": {
"url": "https://github.com/Faire/mjml-react/issues"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"directories": {
"test": "test"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/",
"access": "public"
},
"scripts": {
"build-dist": "/bin/rm -rf dist && yarn build-cjs && yarn build-esm",
"build-cjs": "tsc -p tsconfig.json",
"build-esm": "tsc -p tsconfig-esm.json",
"lint": "eslint .",
"format": "prettier --write .",
"test": "jest",
"test-dist-skip-build": "jest --config=jest-dist.config.js",
"test-dist": "yarn build-dist && yarn test-dist-skip-build",
"generate-mjml-react": "ts-node scripts/generate-mjml-react.ts",
"build-mjml-react": "ts-node scripts/build-mjml-react.ts",
"prepare": "husky install"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.1",
"@semantic-release/git": "^10.0.1",
"@trivago/prettier-plugin-sort-imports": "^3.2.0",
"@types/html-minifier": "^4.0.2",
"@types/jest": "^29.1.2",
"@types/lodash.camelcase": "^4.3.7",
"@types/lodash.kebabcase": "^4.1.7",
"@types/lodash.upperfirst": "^4.3.7",
"@types/mjml": "^4.7.0",
"@types/node": "^18.8.2",
"@types/react": "^18.3",
"@types/react-dom": "^18.3",
"@typescript-eslint/eslint-plugin": "^5.40.1",
"@typescript-eslint/parser": "^5.40.1",
"del": "^6.0.0",
"eslint": "^8.25.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-jest": "^27.1.3",
"eslint-plugin-jest-dom": "^4.0.2",
"eslint-plugin-react": "^7.31.10",
"eslint-plugin-react-hooks": "^4.6.0",
"eslint-plugin-testing-library": "^5.8.0",
"husky": "^8.0.0",
"jest": "^29.0.3",
"lodash.camelcase": "^4.3.0",
"lodash.upperfirst": "^4.3.1",
"mjml": "^4.15.3",
"prettier": "^2.2.1",
"pretty-quick": "^3.1.3",
"react": "^18.3",
"react-dom": "^18.3",
"semantic-release": "^19.0.5",
"ts-jest": "^29.0.3",
"ts-node": "^10.3.0",
"typescript": "4.5.5"
},
"peerDependencies": {
"mjml": "^4.13.0",
"react": "^16.0.0 || ^17.0.0 || ^18.0.0",
"react-dom": "^16.0.0 || ^17.0.0 || ^18.0.0"
},
"module": "dist/esm/index.js",
"dependencies": {
"lodash.kebabcase": "^4.1.1"
},
"release": {
"branches": [
"main",
{
"name": "main-beta",
"prerelease": true
},
{
"name": "main-alpha",
"prerelease": true
}
],
"plugins": [
"@semantic-release/commit-analyzer",
"@semantic-release/release-notes-generator",
[
"@semantic-release/changelog",
{
"changelogFile": "CHANGELOG.md"
}
],
"@semantic-release/npm",
"@semantic-release/github"
]
}
}