forked from mathieutu/nodemailer-react
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
51 lines (51 loc) · 1.48 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
{
"name": "nodemailer-react",
"version": "1.0.1",
"description": "A simple but powerful Nodemailer wrapper to send emails with React templates.",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"repository": "https://github.com/mathieutu/nodemailer-react.git",
"author": "Mathieu TUDISCO <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/mathieutu/nodemailer-react/issues"
},
"homepage": "https://github.com/mathieutu/nodemailer-react",
"files": [
"dist/**/*"
],
"scripts": {
"build": "rm -rf dist && tsc",
"test": "peeky run",
"test:open": "peeky open",
"lint": "eslint --ignore-path .gitignore --ext .ts --ext .jsx .",
"lint:fix": "yarn lint --fix",
"typecheck": "tsc --noEmit",
"prepare": "yarn build",
"prepublishOnly": "yarn typecheck && yarn test && yarn lint",
"changelog": "gitmoji-changelog"
},
"devDependencies": {
"@peeky/cli": "^0.3.3",
"@types/nodemailer": "^6.4.4",
"@types/react": "^17.0.19",
"@types/react-dom": "^17.0.9",
"@typescript-eslint/eslint-plugin": "^4.14.2",
"eslint": "^7.19.0",
"eslint-config-airbnb-typescript": "^12.3.1",
"eslint-plugin-import": "^2.22.1",
"gitmoji-changelog": "^2.2.1",
"nodemailer": "^6.6.3",
"react": ">= 15",
"react-dom": ">= 15",
"typescript": "^4.3.5"
},
"peerDependencies": {
"nodemailer": "^5.1.1",
"react": ">= 15",
"react-dom": ">= 15"
},
"engines": {
"node": ">=6.0.0"
}
}