convert-csv-to-json 3.15.0 → 3.16.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.
@@ -1,15 +1,19 @@
1
1
  {
2
2
  "name": "Node.js",
3
- "image": "mcr.microsoft.com/devcontainers/javascript-node:16-bullseye"
3
+ "image": "mcr.microsoft.com/devcontainers/base:ubuntu",
4
4
 
5
5
  // Features to add to the dev container. More info: https://containers.dev/implementors/features.
6
- // "features": {},
6
+ "features": {
7
+ "ghcr.io/devcontainers/features/node:1": {
8
+ "version": "lts"
9
+ }
10
+ },
7
11
 
8
12
  // Use 'forwardPorts' to make a list of ports inside the container available locally.
9
13
  // "forwardPorts": [],
10
14
 
11
15
  // Use 'postCreateCommand' to run commands after the container is created.
12
- // "postCreateCommand": "yarn install",
16
+ // "postCreateCommand": "npm install",
13
17
 
14
18
  // Configure tool-specific properties.
15
19
  // "customizations": {},
@@ -6,10 +6,12 @@ jobs:
6
6
  build:
7
7
  name: build
8
8
  runs-on: ubuntu-latest
9
+ continue-on-error: ${{ matrix.experimental }}
9
10
 
10
11
  strategy:
11
12
  matrix:
12
- node-version: [14.x, 16.x, 18.x, 20.x, 22.x, 24.x]
13
+ node-version: [18.x, 20.x, 22.x, 24.x, 25.x]
14
+ experimental: [true]
13
15
 
14
16
  steps:
15
17
  - uses: actions/checkout@v5
package/README.md CHANGED
@@ -4,7 +4,7 @@
4
4
  [![Known Vulnerabilities](https://snyk.io/test/github/iuccio/csvToJson/badge.svg)](https://snyk.io/test/github/iuccio/csvToJson)
5
5
  [![Code Climate](https://codeclimate.com/github/iuccio/csvToJson/badges/gpa.svg)](https://codeclimate.com/github/iuccio/csvToJson)
6
6
  [![NPM Version](https://img.shields.io/npm/v/convert-csv-to-json.svg)](https://npmjs.org/package/convert-csv-to-json)
7
- ![NodeJS Version](https://img.shields.io/badge/nodeJS-%3E=14.x-brightgreen.svg)
7
+ ![NodeJS Version](https://img.shields.io/badge/nodeJS-%3E=18.x-brightgreen.svg)
8
8
  [![Downloads](https://img.shields.io/npm/dm/convert-csv-to-json.svg)](https://npmjs.org/package/convert-csv-to-json)
9
9
  [![NPM total downloads](https://img.shields.io/npm/dt/convert-csv-to-json.svg?style=flat)](https://npmjs.org/package/convert-csv-to-json)
10
10
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "convert-csv-to-json",
3
- "version": "3.15.0",
3
+ "version": "3.16.0",
4
4
  "description": "Convert CSV to JSON",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",
@@ -45,9 +45,9 @@
45
45
  },
46
46
  "homepage": "https://github.com/iuccio/CSVtoJSON#readme",
47
47
  "devDependencies": {
48
- "jest": "^29.7.0",
49
- "ts-jest": "^29.1.0",
50
- "typescript": "^5.1.6",
51
- "@types/jest": "^29.5.3"
48
+ "jest": "^30.2.0",
49
+ "ts-jest": "^29.4.5",
50
+ "typescript": "^5.9.3",
51
+ "@types/jest": "^30.0.0"
52
52
  }
53
53
  }