test-smtp-server 0.9.6 → 0.9.7

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +4 -2
package/README.md CHANGED
@@ -11,7 +11,7 @@ may be viewed as raw data or a parsed object that is easily examined.
11
11
 
12
12
  ### Prerequisites
13
13
 
14
- Tested on Node v16 with npm v7.
14
+ Tested on Node v18 with npm v9.
15
15
 
16
16
  ### Installation
17
17
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "test-smtp-server",
3
- "version": "0.9.6",
3
+ "version": "0.9.7",
4
4
  "description": "The test-smtp-server package allows internal testing of projects needing an SMTP server.",
5
5
  "main": "./build/lib/test-smtp-server.js",
6
6
  "types": "./build/lib/test-smtp-server.d.ts",
@@ -17,7 +17,9 @@
17
17
  "lint": "eslint --ignore-path .gitignore -c .eslintrc.js --ext .ts,.js \"{lib,test}/**/*.{ts,tsx,mjs,js}\"",
18
18
  "test": "npm run test:ts && npm run test:js",
19
19
  "test:ts": "node build/test/index.js",
20
- "test:js": "node test/jstest.mjs"
20
+ "test:js": "node test/jstest.mjs",
21
+ "preversion": "npm run build && npm test",
22
+ "postversion": "git push --follow-tags"
21
23
  },
22
24
  "bugs": {
23
25
  "url": "https://github.com/webstech/test-smtp-server/issues"