forked from chromakode/react-html-email
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
53 lines (53 loc) · 1.42 KB
/
package.json
File metadata and controls
53 lines (53 loc) · 1.42 KB
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
{
"name": "@kintaba/react-html-email",
"description": "Create elegant HTML email templates using React.",
"version": "1.0.0",
"keywords": [
"react",
"html",
"email"
],
"license": "MIT",
"author": {
"name": "Max Goodman",
"email": "c@chromakode.com"
},
"scripts": {
"lint": "eslint src",
"format": "prettier src/**/*.{ts,tsx} **/*.json __tests__/*.tsx --write",
"test": "jest",
"test:cov": "jest --coverage",
"build": "tsc && cp -v src/supportMatrix.json dist/",
"prepare": "npm run build"
},
"main": "dist/index.js",
"repository": "vaultio/react-html-email",
"devDependencies": {
"@types/cheerio": "^0.22.18",
"@types/jest": "^26.0.0",
"@types/node": "^14.0.13",
"@types/node-fetch": "^2.5.7",
"@types/react": "^16.9.36",
"@types/react-dom": "^16.9.8",
"@typescript-eslint/eslint-plugin": "^3.2.0",
"@typescript-eslint/parser": "^3.2.0",
"cheerio": "~1.0.0-rc.3",
"eslint": "~7.2.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-import": "^2.21.2",
"eslint-plugin-jsx-a11y": "^6.2.3",
"eslint-plugin-react": "^7.20.0",
"jest": "^26.0.1",
"node-fetch": "~2.6.0",
"prettier": "^2.0.5",
"react": "^16.13.1",
"react-dom": "^16.13.1",
"ts-jest": "^26.1.0",
"ts-node": "^8.10.2",
"typescript": "^3.9.5"
},
"peerDependencies": {
"react": "^16.13.1",
"react-dom": "^16.13.1"
}
}