forked from doublesharp/nodemailer-mock
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
67 lines (67 loc) · 1.86 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
{
"name": "nodemailer-mock-pooled",
"version": "1.5.1",
"description": "Mock nodemailer module for testing with pooled support",
"main": "nodemailer-mock.js",
"directories": {
"lib": "./lib",
"test": "./test"
},
"scripts": {
"test": "./node_modules/.bin/mocha --exit",
"coverage-report": "./test/bin/nyc-coverage-report",
"coverage": "npm run coverage-report && open ./coverage/lcov-report/index.html",
"coverage-badge": "./node_modules/.bin/istanbul-cobertura-badger -e 95 -g 85 -b \"${PWD##*/}\"",
"lint": "./node_modules/.bin/eslint .",
"validate": "./test/bin/module-validator",
"depcheck": "./test/bin/dependency-checker",
"sloc": "./node_modules/.bin/sloc *.js lib test",
"sloc-app": "./node_modules/.bin/sloc *.js lib",
"sloc-test": "./node_modules/.bin/sloc test",
"inspect": "NODE_ENV=test ./node_modules/.bin/mocha -s 0 --inspect --debug-brk"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kevinjil/nodemailer-mock-pooled.git"
},
"keywords": [
"nodemailer",
"transport",
"unit test",
"test",
"mock",
"stub"
],
"author": "Justin Silver",
"contributes": {
"name": "Kevin Jilissen"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/kevinjil/nodemailer-mock-pooled/issues"
},
"homepage": "https://github.com/kevinjil/nodemailer-mock-pooled#readme",
"devDependencies": {
"colors": "1.3.3",
"depcheck": "0.7.2",
"eslint": "5.16.0",
"eslint-config-google": "0.12.0",
"eslint-plugin-mocha": "5.3.0",
"istanbul-cobertura-badger": "1.3.1",
"mocha": "6.1.4",
"nyc": "^14.0.0",
"should": "13.2.3",
"sloc": "0.2.1",
"spec-xunit-file": "0.0.1-3"
},
"dependencies": {
"debug": "4.1.1",
"nodemailer": "6.x"
},
"pre-commit": [
"lint",
"validate",
"depcheck"
],
"pre-push": []
}