forked from doublesharp/nodemailer-mock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
72 lines (72 loc) · 1.82 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
{
"name": "nodemailer-mock",
"version": "1.5.12",
"description": "Easy as pie nodemailer mock for unit testing your Node.js applications",
"main": "nodemailer-mock.js",
"directories": {
"lib": "./lib",
"test": "./test"
},
"scripts": {
"test": "mocha --exit",
"coverage-report": "./test/bin/nyc-coverage-report",
"coverage": "npm run coverage-report && open ./coverage/lcov-report/index.html",
"coverage-badge": "istanbul-cobertura-badger -e 95 -g 85 -b \"${PWD##*/}\"",
"lint": "eslint .",
"validate": "./test/bin/module-validator",
"depcheck": "./test/bin/dependency-checker",
"sloc": "sloc *.js lib test",
"sloc-app": "sloc *.js lib",
"sloc-test": "sloc test",
"inspect": "NODE_ENV=test mocha -s 0 --inspect --debug-brk",
"example:jest": "jest examples",
"example:mocha": "mocha examples/test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/doublesharp/nodemailer-mock.git"
},
"keywords": [
"nodemailer",
"transport",
"unit test",
"test",
"mock",
"stub",
"coverage",
"ci",
"mocha",
"jest"
],
"author": "Justin Silver",
"license": "MIT",
"bugs": {
"url": "https://github.com/doublesharp/nodemailer-mock/issues"
},
"homepage": "https://github.com/doublesharp/nodemailer-mock#readme",
"devDependencies": {
"colors": "^1.4.0",
"depcheck": "^1.4.3",
"eslint": "^8.13.0",
"istanbul-cobertura-badger": "^1.3.1",
"mocha": "^9.2.2",
"nyc": "^15.1.0",
"should": "^13.2.3",
"sloc": "^0.0.4",
"spec-xunit-file": "^0.0.1-3"
},
"dependencies": {
"debug": "^4.3.4",
"nodemailer": "^6.x"
},
"optionalDevDependencies": {
"jest": "^26.6.3",
"mockery": "^2.1.0"
},
"pre-commit": [
"lint",
"validate",
"depcheck"
],
"pre-push": []
}