forked from adonisjs/mail
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
71 lines (71 loc) · 1.72 KB
/
package.json
File metadata and controls
71 lines (71 loc) · 1.72 KB
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
{
"name": "@adonisjs/mail",
"version": "3.0.0",
"description": "Mail provider for adonis framework and has support for all common mailing services to send emails",
"main": "index.js",
"directories": {
"example": "examples",
"test": "test"
},
"scripts": {
"lint": "standard",
"pretest": "npm run lint",
"posttest": "npm run coverage",
"test:local": "FORCE_COLOR=true node bin/index.js --local",
"test": "nyc npm run test:local",
"test:win": "set FORCE_COLOR=true && node bin/index.js --win",
"coverage": "nyc report --reporter=text-lcov | coveralls"
},
"keywords": [
"adonis",
"adonis-framework"
],
"author": "virk",
"license": "MIT",
"devDependencies": {
"@adonisjs/fold": "^4.0.2",
"@adonisjs/sink": "^1.0.13",
"aws-sdk": "^2.104.0",
"coveralls": "^2.13.1",
"cz-conventional-changelog": "^2.0.0",
"dotenv": "^4.0.0",
"japa": "^1.0.4",
"japa-cli": "^1.0.1",
"mailparser": "^2.0.5",
"nodemailer-ses-transport": "^1.5.1",
"nyc": "^11.1.0",
"semver": "^5.4.1",
"standard": "^10.0.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"nyc": {
"exclude": [
"bin"
]
},
"standard": {
"globals": [
"use"
]
},
"dependencies": {
"@adonisjs/generic-exceptions": "^1.0.0",
"debug": "^3.0.0",
"form-data": "^2.2.0",
"get-stream": "^3.0.0",
"got": "^7.1.0",
"nodemailer": "^4.0.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/adonisjs/adonis-mail.git"
},
"bugs": {
"url": "https://github.com/adonisjs/adonis-mail/issues"
},
"homepage": "https://github.com/adonisjs/adonis-mail#readme"
}