-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
42 lines (42 loc) · 1.03 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": "sails-hook-mail",
"version": "0.2.0",
"description": "The simple elegant way to send emails from a Sails application",
"main": "lib/sails-hook-mail.js",
"scripts": {
"lint": "prettier --check .",
"lint:fix": "prettier --write .",
"prepare": "husky install"
},
"keywords": [
"sails",
"sendgrid",
"smtp",
"sails hook",
"nodemailer"
],
"author": "Kelvin Omereshone<[email protected]>",
"bugs": {
"url": "https://github.com/sailscastshq/sails-hook-mail/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sailscastshq/sails-hook-mail.git"
},
"homepage": "https://github.com/sailscastshq/sails-hook-mail#readme",
"license": "MIT",
"sails": {
"isHook": true,
"hookName": "mail"
},
"devDependencies": {
"@commitlint/cli": "^17.6.7",
"@commitlint/config-conventional": "^17.6.7",
"husky": "^8.0.3",
"lint-staged": "^13.2.3",
"prettier": "3.0.0"
},
"lint-staged": {
"**/*": "prettier --write --ignore-unknown"
}
}