-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 1.01 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
{
"name": "@transomjs/transom-smtp",
"version": "5.0.0",
"description": "Add SMTP functions and email templating to server-side Transom code",
"main": "index.js",
"scripts": {
"deploy": "np",
"test": "cross-env NODE_ENV=test nyc mocha",
"coveralls": "nyc report --reporter=text-lcov | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/transomjs/transom-smtp.git"
},
"keywords": [
"smtp",
"email"
],
"author": "Mark Voorberg <mark@binaryops.ca>",
"license": "MIT",
"bugs": {
"url": "https://github.com/transomjs/transom-smtp/issues"
},
"homepage": "https://github.com/transomjs/transom-smtp#readme",
"engines": {
"node": ">= 16"
},
"devDependencies": {
"chai": "^5.0.3",
"coveralls": "^3.1.1",
"cross-env": "^7.0.3",
"mocha": "^10.2.0",
"mocha-lcov-reporter": "^1.3.0",
"np": "^9.2.0",
"nyc": "^15.1.0",
"shelljs": "^0.8.5",
"sinon": "^17.0.1"
},
"dependencies": {
"nodemailer": "^6.9.16"
}
}