convert-csv-to-json 4.17.0 → 4.18.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/package.json +1 -1
- package/.devcontainer/devcontainer.json +0 -23
- package/.vscode/launch.json +0 -24
package/package.json
CHANGED
|
@@ -1,23 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "Node.js",
|
|
3
|
-
"image": "mcr.microsoft.com/devcontainers/base:ubuntu",
|
|
4
|
-
|
|
5
|
-
// Features to add to the dev container. More info: https://containers.dev/implementors/features.
|
|
6
|
-
"features": {
|
|
7
|
-
"ghcr.io/devcontainers/features/node:1": {
|
|
8
|
-
"version": "lts"
|
|
9
|
-
}
|
|
10
|
-
},
|
|
11
|
-
|
|
12
|
-
// Use 'forwardPorts' to make a list of ports inside the container available locally.
|
|
13
|
-
// "forwardPorts": [],
|
|
14
|
-
|
|
15
|
-
// Use 'postCreateCommand' to run commands after the container is created.
|
|
16
|
-
"postCreateCommand": "npm install"
|
|
17
|
-
|
|
18
|
-
// Configure tool-specific properties.
|
|
19
|
-
// "customizations": {},
|
|
20
|
-
|
|
21
|
-
// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
|
|
22
|
-
// "remoteUser": "root"
|
|
23
|
-
}
|
package/.vscode/launch.json
DELETED
|
@@ -1,24 +0,0 @@
|
|
|
1
|
-
{
|
|
2
|
-
// Use IntelliSense to learn about possible attributes.
|
|
3
|
-
// Hover to view descriptions of existing attributes.
|
|
4
|
-
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387
|
|
5
|
-
"version": "0.2.0",
|
|
6
|
-
"configurations": [
|
|
7
|
-
{
|
|
8
|
-
"name": "Launch Chrome",
|
|
9
|
-
"request": "launch",
|
|
10
|
-
"type": "chrome",
|
|
11
|
-
"url": "http://localhost:8080",
|
|
12
|
-
"webRoot": "${workspaceFolder}"
|
|
13
|
-
},
|
|
14
|
-
{
|
|
15
|
-
"type": "node",
|
|
16
|
-
"request": "launch",
|
|
17
|
-
"name": "Launch Program",
|
|
18
|
-
"skipFiles": [
|
|
19
|
-
"<node_internals>/**"
|
|
20
|
-
],
|
|
21
|
-
"program": "${workspaceFolder}/index.js"
|
|
22
|
-
}
|
|
23
|
-
]
|
|
24
|
-
}
|