convert-csv-to-json 1.3.2 → 1.4.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/.devcontainer/devcontainer.json +19 -0
- package/.github/ISSUE_TEMPLATE/bug_report.md +24 -0
- package/.github/PULL_REQUEST_TEMPLATE.md +7 -0
- package/.github/workflows/nodejs.yml +1 -1
- package/README.md +2 -0
- package/SECURITY.md +22 -0
- package/package.json +3 -3
- package/.idea/csvToJson.iml +0 -9
- package/.idea/misc.xml +0 -6
- package/.idea/modules.xml +0 -8
- package/.idea/vcs.xml +0 -6
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "Node.js",
|
|
3
|
+
"image": "mcr.microsoft.com/devcontainers/javascript-node:16-bullseye"
|
|
4
|
+
|
|
5
|
+
// Features to add to the dev container. More info: https://containers.dev/implementors/features.
|
|
6
|
+
// "features": {},
|
|
7
|
+
|
|
8
|
+
// Use 'forwardPorts' to make a list of ports inside the container available locally.
|
|
9
|
+
// "forwardPorts": [],
|
|
10
|
+
|
|
11
|
+
// Use 'postCreateCommand' to run commands after the container is created.
|
|
12
|
+
// "postCreateCommand": "yarn install",
|
|
13
|
+
|
|
14
|
+
// Configure tool-specific properties.
|
|
15
|
+
// "customizations": {},
|
|
16
|
+
|
|
17
|
+
// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
|
|
18
|
+
// "remoteUser": "root"
|
|
19
|
+
}
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
---
|
|
2
|
+
name: Bug report
|
|
3
|
+
about: Create a report to help us improve
|
|
4
|
+
title: "[BUG]"
|
|
5
|
+
labels: ''
|
|
6
|
+
assignees: ''
|
|
7
|
+
|
|
8
|
+
---
|
|
9
|
+
|
|
10
|
+
## Expected Behavior
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
## Actual Behavior
|
|
14
|
+
|
|
15
|
+
|
|
16
|
+
## Steps to Reproduce the Problem
|
|
17
|
+
|
|
18
|
+
1.
|
|
19
|
+
1.
|
|
20
|
+
1.
|
|
21
|
+
|
|
22
|
+
## Specifications
|
|
23
|
+
|
|
24
|
+
- Version:
|
package/README.md
CHANGED
|
@@ -1,7 +1,9 @@
|
|
|
1
1
|
# CSVtoJSON
|
|
2
|
+

|
|
2
3
|
[](https://github.com/iuccio/csvToJson/actions?query=workflow%3A%22Node+CI%22)
|
|
3
4
|
[](https://github.com/iuccio/csvToJson/actions?query=workflow%3ACodeQL)
|
|
4
5
|
[](https://codeclimate.com/github/iuccio/csvToJson)
|
|
6
|
+
[](https://snyk.io/test/github/iuccio/csvToJson)
|
|
5
7
|
[](https://npmjs.org/package/convert-csv-to-json)
|
|
6
8
|
[](https://npmjs.org/package/convert-csv-to-json)
|
|
7
9
|
|
package/SECURITY.md
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# Security Policy
|
|
2
|
+
|
|
3
|
+
[csvToJson](https://github.com/iuccio/csvToJson) is not dependent on others packages or libraries. The only dependencies that [csvToJson](https://github.com/iuccio/csvToJson) uses
|
|
4
|
+
are **devDependencies**.
|
|
5
|
+
This means that the prduced [npm package](https://www.npmjs.com/package/convert-csv-to-json) is never affected by dependency vulnerabilities.
|
|
6
|
+
|
|
7
|
+
For the **devDependencies** Github Dependabot is enabled and inform us when a security vulnerability affects [csvToJson](https://github.com/iuccio/csvToJson).
|
|
8
|
+
A generated Github Depedabot PR is normally quickly merged and a new version is released.
|
|
9
|
+
|
|
10
|
+
## Vulnerabities
|
|
11
|
+
[](https://snyk.io/test/github/iuccio/csvToJson)
|
|
12
|
+
|
|
13
|
+
## Supported Versions
|
|
14
|
+
|
|
15
|
+
| Version | Supported |
|
|
16
|
+
| ------- | ------------------ |
|
|
17
|
+
| 1.3.3 | :white_check_mark: |
|
|
18
|
+
| 1.3.2 | :white_check_mark: |
|
|
19
|
+
|
|
20
|
+
## Reporting a Vulnerability
|
|
21
|
+
|
|
22
|
+
To report a Security Vulnerability please add an [Vulnerabilty Issue](https://github.com/iuccio/csvToJson/labels/vulnerabilty).
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "convert-csv-to-json",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.4.0",
|
|
4
4
|
"description": "Convert CSV to JSON",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"scripts": {
|
|
@@ -35,8 +35,8 @@
|
|
|
35
35
|
},
|
|
36
36
|
"homepage": "https://github.com/iuccio/CSVtoJSON#readme",
|
|
37
37
|
"devDependencies": {
|
|
38
|
-
"chai": "^4.3.
|
|
38
|
+
"chai": "^4.3.7",
|
|
39
39
|
"chai-fs": "^2.0.0",
|
|
40
|
-
"mocha": "^
|
|
40
|
+
"mocha": "^10.1.0"
|
|
41
41
|
}
|
|
42
42
|
}
|
package/.idea/csvToJson.iml
DELETED
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<module type="JAVA_MODULE" version="4">
|
|
3
|
-
<component name="NewModuleRootManager" inherit-compiler-output="true">
|
|
4
|
-
<exclude-output />
|
|
5
|
-
<content url="file://$MODULE_DIR$" />
|
|
6
|
-
<orderEntry type="inheritedJdk" />
|
|
7
|
-
<orderEntry type="sourceFolder" forTests="false" />
|
|
8
|
-
</component>
|
|
9
|
-
</module>
|
package/.idea/misc.xml
DELETED
package/.idea/modules.xml
DELETED
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
<?xml version="1.0" encoding="UTF-8"?>
|
|
2
|
-
<project version="4">
|
|
3
|
-
<component name="ProjectModuleManager">
|
|
4
|
-
<modules>
|
|
5
|
-
<module fileurl="file://$PROJECT_DIR$/.idea/csvToJson.iml" filepath="$PROJECT_DIR$/.idea/csvToJson.iml" />
|
|
6
|
-
</modules>
|
|
7
|
-
</component>
|
|
8
|
-
</project>
|