-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
67 lines (67 loc) · 2.11 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "nms",
"version": "1.0.0",
"description": "Agnostic transactional email sending in Node.js environment",
"main": "dist/index.js",
"repository": "[email protected]:pchchv/nms.git",
"author": "pchchv <[email protected]>",
"license": "MIT",
"scripts": {
"distribute": "yarn build-ts && node dist/index.js",
"develop": "tsc-watch --skipLibCheck --onSuccess 'node dist/index.js'",
"build-ts": "tsc --skipLibCheck",
"test": "yarn jest --forceExit --runInBand",
"pretty": "prettier --check src",
"lint": "yarn pretty && eslint --max-warnings 0 --ext ts,tsx,json src"
},
"dependencies": {
"chalk": "^4.1.0",
"color": "^4.2.3",
"hbs": "4.2.0",
"html-to-text": "8.1.0",
"joi": "17.5.0",
"node-mailjet": "3.3.4",
"nodemailer": "6.7.2",
"nodemailer-mailgun-transport": "^2.1.5",
"nodemailer-mandrill-transport": "^1.2.0",
"nodemailer-postmark-transport": "^5.2.1",
"nodemailer-sendgrid": "^1.0.3",
"nodemailer-sendinblue-v3-transport": "^1.0.1",
"nodemailer-ses-transport": "^1.5.1",
"nodemailer-sparkpost-transport": "^2.2.0"
},
"devDependencies": {
"@types/color": "^3.0.3",
"@types/hbs": "4.0.1",
"@types/html-to-text": "^8.1.1",
"@types/node": "16.11.17",
"@types/node-mailjet": "3.3.7",
"@types/nodemailer": "6.4.4",
"@types/nodemailer-mailgun-transport": "^1.4.3",
"@types/nodemailer-sendgrid": "^1.0.0",
"@typescript-eslint/eslint-plugin": "4.15.2",
"@typescript-eslint/parser": "4.15.2",
"auto-changelog": "2.3.0",
"chai": "4.3.4",
"chance": "1.1.8",
"coveralls": "3.1.1",
"dotenv": "10.0.0",
"eslint": "7.21.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-jsdoc": "32.2.0",
"eslint-plugin-prefer-arrow": "1.2.3",
"leasot": "12.0.0",
"lodash": "4.17.21",
"mocha": "9.1.3",
"mockery": "2.1.0",
"nodemailer-mock": "1.5.11",
"nodemon": "2.0.15",
"npm-run-all": "4.1.5",
"nyc": "15.1.0",
"sinon": "12.0.1",
"ts-node": "10.4.0",
"tsconfig-paths": "3.12.0",
"typescript": "4.5.4",
"typescript-eslint": "0.0.1-alpha.0"
}
}