-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.27 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
{
"name": "reshuffle-smtp-connector",
"version": "0.0.7",
"description": "A Reshuffle SMTP connector",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "rimraf dist && tsc",
"build:watch": "rimraf dist && tsc -w",
"lint": "eslint . --ext .ts,.js --fix",
"prepublishOnly": "rimraf dist && tsc"
},
"repository": {
"type": "git",
"url": "git+https://github.com/reshufflehq/reshuffle-smtp-connector.git"
},
"keywords": [
"Reshuffle",
"integrations",
"workflows",
"SMTP",
"email"
],
"author": "Nimo Naamani",
"license": "MIT",
"bugs": {
"url": "https://github.com/reshufflehq/reshuffle-smtp-connector/issues"
},
"homepage": "https://github.com/reshufflehq/reshuffle-smtp-connector#readme",
"dependencies": {
"nanoid": "3.1.31",
"nodemailer": "6.6.1",
"prettier": "^2.1.1",
"reshuffle-base-connector": "^0.0.11"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^3.10.1",
"@typescript-eslint/parser": "^3.10.1",
"@types/nodemailer": "^6.4.0",
"eslint": "^7.7.0",
"eslint-config-prettier": "^6.11.0",
"eslint-plugin-prettier": "^3.1.4",
"prettier": "^2.1.1",
"rimraf": "^3.0.2",
"ts-node": "^9.0.0",
"typescript": "^4.0.2"
}
}