convert-csv-to-json 3.15.0 → 3.17.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/
|
|
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
|
-
|
|
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
|
-
|
|
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: [
|
|
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
|
[](https://snyk.io/test/github/iuccio/csvToJson)
|
|
5
5
|
[](https://codeclimate.com/github/iuccio/csvToJson)
|
|
6
6
|
[](https://npmjs.org/package/convert-csv-to-json)
|
|
7
|
-

|
|
8
8
|
[](https://npmjs.org/package/convert-csv-to-json)
|
|
9
9
|
[](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.
|
|
3
|
+
"version": "3.17.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": "^
|
|
49
|
-
"ts-jest": "^29.
|
|
50
|
-
"typescript": "^5.
|
|
51
|
-
"@types/jest": "^
|
|
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
|
}
|