node-osc 8.1.0 → 9.0.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.
@@ -40,7 +40,7 @@ jobs:
40
40
  - name: Setup Node.js
41
41
  uses: actions/setup-node@v3
42
42
  with:
43
- node-version: 18
43
+ node-version: 20
44
44
  cache: 'npm'
45
45
 
46
46
  - name: Install npm packages
@@ -50,6 +50,8 @@ jobs:
50
50
  run: |
51
51
  git config user.name 'Myles Borins'
52
52
  git config user.email 'myles.borins@gmail.com'
53
+ git config gpg.format ssh
54
+ git config user.signingKey 'ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIFtQmrz647zOGumjiqGirj1G9brj/QbwJQ5S3gHRmcfl myles.borins@gmail.com'
53
55
 
54
56
  - name: bump version
55
57
  run: npm version ${{ github.event.inputs.version }}
@@ -17,7 +17,7 @@ jobs:
17
17
  - name: Setup node
18
18
  uses: actions/setup-node@v3
19
19
  with:
20
- node-version: 18
20
+ node-version: 20
21
21
  registry-url: 'https://registry.npmjs.org'
22
22
  cache: npm
23
23
  - name: Install latest npm version
@@ -11,7 +11,7 @@ jobs:
11
11
  run-tests:
12
12
  strategy:
13
13
  matrix:
14
- node-version: ['20', '18', '16', '14']
14
+ node-version: ['20', '18']
15
15
  os: [ubuntu-latest, macos-latest, windows-latest]
16
16
 
17
17
  runs-on: ${{ matrix.os }}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "node-osc",
3
3
  "description": "pyOSC inspired library for sending and receiving OSC messages",
4
- "version": "8.1.0",
4
+ "version": "9.0.0",
5
5
  "exports": {
6
6
  "require": "./dist/lib/index.js",
7
7
  "default": "./lib/index.mjs"
@@ -11,7 +11,7 @@
11
11
  "email": "myles.borins@gmail.com"
12
12
  },
13
13
  "engines": {
14
- "node": "^14.18 || ^16.13 || >=18"
14
+ "node": "^18.17.0 || >=20.5.0"
15
15
  },
16
16
  "license": "LGPL-3.0-or-later",
17
17
  "scripts": {
@@ -20,8 +20,8 @@
20
20
  "prepublishOnly": "npm run build",
21
21
  "lint": "eslint \"lib/**/*.mjs\" test/* examples/*",
22
22
  "test": "npm run lint && npm run build && npm run test:esm && npm run test:cjs",
23
- "test:esm": "c8 tap --no-coverage -j1 test/test-*.mjs",
24
- "test:cjs": "tap --no-coverage -j1 dist/test/test-*.js"
23
+ "test:esm": "tap -j1 test/test-*.mjs",
24
+ "test:cjs": "tap -j1 dist/test/test-*.js"
25
25
  },
26
26
  "contributors": [
27
27
  "Hans Hübner <hans.huebner@gmail.com>",
@@ -40,10 +40,9 @@
40
40
  "osc-min": "^1.1.1"
41
41
  },
42
42
  "devDependencies": {
43
- "c8": "^8.0.1",
44
43
  "eslint": "^8.36.0",
45
44
  "get-port": "^6.1.2",
46
45
  "rollup": "^3.20.1",
47
- "tap": "^16.3.0"
46
+ "tap": "^18.4.2"
48
47
  }
49
48
  }