-
Notifications
You must be signed in to change notification settings - Fork 115
/
package.json
50 lines (50 loc) · 1.32 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
{
"name": "react-html-email",
"description": "Create elegant HTML email templates using React.",
"version": "3.0.0",
"keywords": [
"react",
"html",
"email"
],
"license": "MIT",
"author": {
"name": "Max Goodman",
"email": "c@chromakode.com"
},
"scripts": {
"lint": "eslint --ext .jsx --ext .js .",
"test": "jest",
"test:cov": "jest --coverage",
"compile": "babel -d lib/ src/ && cp -v src/supportMatrix.json lib/",
"scrape": "babel-node scripts/scrapeStyleSupport.js > src/supportMatrix.json",
"prepare": "npm run compile"
},
"main": "lib/index.js",
"repository": "chromakode/react-html-email",
"devDependencies": {
"babel-cli": "~6.26.0",
"babel-eslint": "~8.0.0",
"babel-jest": "^21.0.2",
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.6.0",
"babel-preset-react": "^6.24.1",
"cheerio": "~1.0.0-rc.2",
"eslint": "~4.7.2",
"eslint-config-airbnb": "~15.1.0",
"eslint-plugin-import": "^2.7.0",
"eslint-plugin-jsx-a11y": "^5.1.1",
"eslint-plugin-react": "^7.4.0",
"jest": "^21.1.0",
"node-fetch": "~1.7.3",
"react": "^16.0.0",
"react-dom": "^16.0.0"
},
"peerDependencies": {
"react": "^16.0.0",
"react-dom": "^16.0.0"
},
"dependencies": {
"prop-types": "^15.5.10"
}
}