-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1006 Bytes
/
package.json
File metadata and controls
45 lines (45 loc) · 1006 Bytes
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
{
"name": "booljs-mailer",
"version": "0.1.0",
"description": "Middleware to allow developers send mails in their APIs",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/booljs/booljs-mailer.git"
},
"scripts": {
"test": "NODE_ENV=test mocha --recursive --timeout 5000 test"
},
"keywords": [
"booljs",
"mailer",
"nodemailer",
"api",
"middleware"
],
"author": {
"name": "Pablo Andrés Dorado Suárez",
"mail": "pandres95@booljs.co"
},
"engines": {
"node": ">=4.0.0",
"npm": ">=3.0.0"
},
"license": "GPL-3.0",
"bugs": {
"url": "https://github.com/booljs/booljs-mailer/issues"
},
"homepage": "https://github.com/booljs/booljs-mailer#readme",
"dependencies": {
"nodemailer": "^2.0.0"
},
"peerDependencies": {
"booljs-api": "^0.3.0"
},
"devDependencies": {
"chai": "^3.4.1",
"mocha": "^2.3.4",
"supertest": "^1.1.0",
"supertest-as-promised": "^2.0.2"
}
}