-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
64 lines (64 loc) · 1.77 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
{
"name": "sails-service-mailer",
"version": "0.0.0-semantic-release",
"description": "Service for Sails framework with Mailer feautres",
"main": "lib/index.js",
"author": "ghaiklor",
"license": "MIT",
"scripts": {
"compile": "babel src --out-dir lib",
"coveralls": "cat coverage/lcov.info | coveralls",
"prepublish": "npm run snyk-protect && npm run compile",
"semantic-release": "semantic-release pre && npm publish && semantic-release post",
"test": "babel-node ./node_modules/.bin/isparta cover _mocha",
"snyk-protect": "snyk protect"
},
"bugs": {
"url": "https://github.com/ghaiklor/sails-service-mailer/issues"
},
"homepage": "https://github.com/ghaiklor/sails-service-mailer#readme",
"repository": {
"type": "git",
"url": "https://github.com/ghaiklor/sails-service-mailer.git"
},
"keywords": [
"sails",
"service",
"mailer"
],
"dependencies": {
"nodemailer": "6.9.9",
"lodash": "4.17.21",
"nodemailer-direct-transport": "3.3.2",
"nodemailer-sendgrid-transport": "0.2.0",
"nodemailer-sendmail-transport": "1.0.2",
"nodemailer-ses-transport": "1.5.0",
"nodemailer-smtp-transport": "2.7.4",
"nodemailer-stub-transport": "1.1.0",
"snyk": "^1.316.1"
},
"devDependencies": {
"babel-cli": "6.26.0",
"babel-plugin-add-module-exports": "1.0.1",
"babel-preset-es2015": "6.24.1",
"chai": "4.1.2",
"coveralls": "3.0.8",
"cz-conventional-changelog": "3.1.0",
"isparta": "4.1.1",
"mocha": "7.1.0",
"semantic-release": "19.0.3",
"sinon": "7.4.0"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"publishConfig": {
"tag": "latest"
},
"release": {
"branch": "master"
},
"snyk": true
}