-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
73 lines (73 loc) · 2.17 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
68
69
70
71
72
73
{
"name": "feathers-mailer",
"description": "Feathers mailer service",
"version": "4.1.1",
"homepage": "https://github.com/feathersjs-ecosystem/feathers-mailer",
"main": "lib/",
"types": "lib/",
"keywords": [
"feathers",
"feathers-plugin",
"mail",
"email",
"mailer",
"nodemailer"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git://github.com/feathersjs-ecosystem/feathers-mailer.git"
},
"author": {
"name": "Feathers contributors",
"email": "hello@feathersjs.com",
"url": "https://feathersjs.com"
},
"contributors": [],
"bugs": {
"url": "https://github.com/feathersjs-ecosystem/feathers-mailer/issues"
},
"engines": {
"node": ">= 16"
},
"scripts": {
"prepublish": "npm run compile",
"compile": "shx rm -rf lib/ && tsc",
"publish": "git push origin --tags && npm run changelog && git push origin",
"release:patch": "npm version patch && npm publish",
"release:minor": "npm version minor && npm publish",
"release:major": "npm version major && npm publish",
"changelog": "github_changelog_generator -u feathersjs-ecosystem -p feathers-mailer && git add CHANGELOG.md && git commit -am \"Updating changelog\"",
"update-dependencies": "ncu -u",
"lint": "eslint src/**/*.ts test/**/*.ts --fix",
"mocha": "cross-env NODE_ENV=test TS_NODE_PROJECT='tsconfig.test.json' mocha --timeout 10000",
"test": "npm run lint && npm run coverage",
"coverage": "nyc npm run mocha"
},
"directories": {
"src": "src"
},
"dependencies": {
"debug": "^4.3.4",
"nodemailer": "^6.9.3"
},
"devDependencies": {
"@types/debug": "^4.1.8",
"@types/mocha": "^10.0.1",
"@types/node": "^20.2.5",
"@types/nodemailer": "^6.4.8",
"@types/nodemailer-stub-transport": "^1.1.6",
"@typescript-eslint/eslint-plugin": "^5.59.8",
"@typescript-eslint/parser": "^5.59.8",
"address-rfc2822": "^2.1.0",
"cross-env": "^7.0.3",
"eslint": "^8.41.0",
"mocha": "^10.2.0",
"nodemailer-stub-transport": "^1.1.0",
"npm-check-updates": "^16.10.12",
"nyc": "^15.1.0",
"shx": "^0.3.4",
"ts-node": "^10.9.1",
"typescript": "^5.1.3"
}
}