Initial commit

This commit is contained in:
pasketti
2026-04-05 16:14:49 -04:00
commit ebee3a5534
14059 changed files with 2588797 additions and 0 deletions

42
node_modules/d3-dsv/package.json generated vendored Normal file
View File

@@ -0,0 +1,42 @@
{
"name": "d3-dsv",
"version": "1.0.8",
"description": "A parser and formatter for delimiter-separated values, such as CSV and TSV",
"homepage": "https://d3js.org/d3-dsv/",
"license": "BSD-3-Clause",
"author": {
"name": "Mike Bostock",
"url": "http://bost.ocks.org/mike"
},
"main": "build/d3-dsv.js",
"module": "index",
"jsnext:main": "index.js",
"bin": {
"csv2json": "bin/dsv2json",
"csv2tsv": "bin/dsv2dsv",
"dsv2dsv": "bin/dsv2dsv",
"dsv2json": "bin/dsv2json",
"json2csv": "bin/json2dsv",
"json2dsv": "bin/json2dsv",
"json2tsv": "bin/json2dsv",
"tsv2csv": "bin/dsv2dsv",
"tsv2json": "bin/dsv2json"
},
"repository": {
"type": "git",
"url": "https://github.com/d3/d3-dsv.git"
},
"dependencies": {
"commander": "2",
"iconv-lite": "0.4",
"rw": "1"
},
"devDependencies": {
"csv-spectrum": "1",
"eslint": "4",
"package-preamble": "0.1",
"rollup": "0.49",
"tape": "4",
"uglify-js": "3"
}
}