convert-csv-to-json 4.16.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "convert-csv-to-json",
3
- "version": "4.16.0",
3
+ "version": "4.18.0",
4
4
  "description": "Convert CSV to JSON",
5
5
  "main": "index.js",
6
6
  "types": "index.d.ts",
@@ -10,9 +10,6 @@
10
10
  "lint": "eslint .",
11
11
  "docs": "jsdoc -c jsdoc.json",
12
12
  "docs:api": "jsdoc -c jsdoc.json -d docs/api",
13
- "build:browser": "browserify src/browserApi.js -o dist/csvToJson.browser.js --standalone csvToJson",
14
- "build:demo": "npm run build:all",
15
- "build:all": "npm run build:browser && npm run build:demo",
16
13
  "prepublishOnly": "npm run docs:api",
17
14
  "version-patch": "npm version patch",
18
15
  "version-minor": "npm version minor",
@@ -55,7 +52,6 @@
55
52
  "@eslint/js": "^10.0.1",
56
53
  "@types/jest": "^30.0.0",
57
54
  "better-docs": "^2.7.3",
58
- "browserify": "^17.0.1",
59
55
  "eslint": "^10.1.0",
60
56
  "eslint-plugin-jsdoc": "^62.8.0",
61
57
  "jest": "^30.2.0",
@@ -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
- }
@@ -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
- }
package/docs/.nojekyll DELETED
File without changes