-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
40 lines (40 loc) · 1008 Bytes
/
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
{
"name": "super-email",
"version": "0.1.4",
"description": "Use JSX and React for rendering your emails with ease!",
"main": "lib/index.js",
"repository": "https://github.com/jferrettiboke/super-email.git",
"author": "Jesús Ferretti <[email protected]>",
"license": "MIT",
"keywords": [
"email",
"template",
"render",
"react",
"jsx",
"node"
],
"scripts": {
"build": "parcel build src/index.js --out-dir lib --target node",
"test": "jest --env=node",
"test:watch": "jest --watchAll --env=node"
},
"dependencies": {
"juice": "^4.2.3",
"prop-types": "^15.6.1"
},
"peerDependencies": {
"react": "^16.4.0",
"react-dom": "^16.4.0"
},
"devDependencies": {
"babel-plugin-transform-object-rest-spread": "^6.26.0",
"babel-preset-env": "^1.7.0",
"babel-preset-react": "^6.24.1",
"jest": "^23.0.0",
"parcel-bundler": "^1.8.1",
"pretty": "^2.0.0",
"react": "^16.4.0",
"react-dom": "^16.4.0"
}
}