libmime 5.0.0 → 5.1.0

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.
package/.gitattributes ADDED
@@ -0,0 +1 @@
1
+ *.js text eol=lf
@@ -0,0 +1,21 @@
1
+ name: Run tests
2
+
3
+ on:
4
+ push:
5
+ pull_request:
6
+
7
+ jobs:
8
+ test:
9
+ strategy:
10
+ matrix:
11
+ node: [12.x, 14.x, 16.x, 18.x]
12
+ os: [ubuntu-latest, macos-latest, windows-latest]
13
+ runs-on: ${{ matrix.os }}
14
+ steps:
15
+ - uses: actions/checkout@v2
16
+ - name: Use Node.js ${{ matrix.node }}
17
+ uses: actions/setup-node@v1
18
+ with:
19
+ node-version: ${{ matrix.node }}
20
+ - run: npm install
21
+ - run: npm test
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # Changelog
2
2
 
3
+ ## v5.1.0 2022-04-28
4
+
5
+ - Bumped deps
6
+ - Removed Travis config
7
+ - Added Github actions file to run tests
8
+
3
9
  ## v5.0.0 2020-07-22
4
10
 
5
11
  - Removed optional node-iconv support
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "libmime",
3
3
  "description": "Encode and decode quoted printable and base64 strings",
4
- "version": "5.0.0",
4
+ "version": "5.1.0",
5
5
  "main": "lib/libmime",
6
6
  "homepage": "https://github.com/andris9/libmime",
7
7
  "repository": {
@@ -19,19 +19,19 @@
19
19
  "test": "grunt"
20
20
  },
21
21
  "dependencies": {
22
- "encoding-japanese": "1.0.30",
23
- "iconv-lite": "0.6.2",
22
+ "encoding-japanese": "2.0.0",
23
+ "iconv-lite": "0.6.3",
24
24
  "libbase64": "1.2.1",
25
25
  "libqp": "1.1.0"
26
26
  },
27
27
  "devDependencies": {
28
- "chai": "4.2.0",
28
+ "chai": "4.3.6",
29
29
  "eslint-config-nodemailer": "1.2.0",
30
- "eslint-config-prettier": "6.11.0",
31
- "grunt": "1.2.1",
32
- "grunt-cli": "1.3.2",
33
- "grunt-eslint": "23.0.0",
30
+ "eslint-config-prettier": "8.5.0",
31
+ "grunt": "1.5.2",
32
+ "grunt-cli": "1.4.3",
33
+ "grunt-eslint": "24.0.0",
34
34
  "grunt-mocha-test": "0.13.3",
35
- "mocha": "8.0.1"
35
+ "mocha": "9.2.2"
36
36
  }
37
37
  }