-
Notifications
You must be signed in to change notification settings - Fork 26
/
Copy pathpackage.json
75 lines (75 loc) · 1.46 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
65
66
67
68
69
70
71
72
73
74
75
{
"name": "sendemail",
"version": "4.0.3",
"description": "Simplifies reliably sending emails from your node.js apps!",
"main": "lib/index.js",
"scripts": {
"nocov": "tape ./test/*.js",
"test": "nyc tape ./test/*.test.js | tap-nyc",
"lint": "node_modules/.bin/goodparts lib/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dwyl/sendemail.git"
},
"author": "@dwyl & pals!",
"license": "GPL-2.0",
"engines": {
"node": ">= 12.5.0"
},
"bugs": {
"url": "https://github.com/dwyl/sendemail/issues"
},
"homepage": "https://github.com/dwyl/sendemail#readme",
"directories": {
"test": "test"
},
"dependencies": {
"aws-sdk": "^2.670.0",
"handlebars": "^4.7.6"
},
"devDependencies": {
"decache": "^4.5.1",
"env2": "^2.2.2",
"goodparts": "1.3.0",
"istanbul": "^0.4.0",
"nyc": "^15.0.1",
"pre-commit": "1.2.2",
"tap-nyc": "^1.0.3",
"tape": "^5.0.0"
},
"pre-commit": [
"lint",
"test"
],
"nyc": {
"check-coverage": true,
"lines": 100,
"statements": 100,
"functions": 100,
"branches": 100,
"include": [
"lib/index.js"
],
"exclude": [
"test/"
],
"reporter": [
"lcov",
"text-summary"
],
"cache": false,
"all": true,
"report-dir": "./coverage"
},
"keywords": [
"email",
"verification",
"registration",
"reset",
"welcome",
"send",
"simple",
"template"
]
}