2021-12-03 17:58:48 +01:00

185 lines
4.8 KiB
JSON

{
"_from": "csv-parse@^4.8.8",
"_id": "csv-parse@4.15.0",
"_inBundle": false,
"_integrity": "sha512-y2wGeU/ybvUlyw6F+eanM6lxxE4JthCuHuaoTgPXdw6ImmfYXqtP0nrCLqd6Ew/a0FgPEz36y5HznI0W5oJ+cg==",
"_location": "/csv-parse",
"_phantomChildren": {},
"_requested": {
"type": "range",
"registry": true,
"raw": "csv-parse@^4.8.8",
"name": "csv-parse",
"escapedName": "csv-parse",
"rawSpec": "^4.8.8",
"saveSpec": null,
"fetchSpec": "^4.8.8"
},
"_requiredBy": [
"/csv"
],
"_resolved": "https://registry.npmjs.org/csv-parse/-/csv-parse-4.15.0.tgz",
"_shasum": "d86d447e88d5f9a539e8768874f89a8d86d8fd78",
"_spec": "csv-parse@^4.8.8",
"_where": "/usr/home/nodejs/node_modules/csv",
"author": {
"name": "David Worms",
"email": "david@adaltas.com",
"url": "https://www.adaltas.com"
},
"bugs": {
"url": "https://github.com/wdavidw/node-csv-parse/issues"
},
"bundleDependencies": false,
"coffeelintConfig": {
"indentation": {
"level": "error",
"value": 2
},
"line_endings": {
"level": "error",
"value": "unix"
},
"max_line_length": {
"level": "ignore"
}
},
"contributors": [
{
"name": "David Worms",
"email": "david@adaltas.com",
"url": "https://www.adaltas.com"
},
{
"name": "Will White",
"url": "https://github.com/willwhite"
},
{
"name": "Justin Latimer",
"url": "https://github.com/justinlatimer"
},
{
"name": "jonseymour",
"url": "https://github.com/jonseymour"
},
{
"name": "pascalopitz",
"url": "https://github.com/pascalopitz"
},
{
"name": "Josh Pschorr",
"url": "https://github.com/jpschorr"
},
{
"name": "Elad Ben-Israel",
"url": "https://github.com/eladb"
},
{
"name": "Philippe Plantier",
"url": "https://github.com/phipla"
},
{
"name": "Tim Oxley",
"url": "https://github.com/timoxley"
},
{
"name": "Damon Oehlman",
"url": "https://github.com/DamonOehlman"
},
{
"name": "Alexandru Topliceanu",
"url": "https://github.com/topliceanu"
},
{
"name": "Visup",
"url": "https://github.com/visup"
},
{
"name": "Edmund von der Burg",
"url": "https://github.com/evdb"
},
{
"name": "Douglas Christopher Wilson",
"url": "https://github.com/dougwilson"
},
{
"name": "Joe Eaves",
"url": "https://github.com/Joeasaurus"
},
{
"name": "Mark Stosberg",
"url": "https://github.com/markstos"
}
],
"dependencies": {},
"deprecated": false,
"description": "CSV parsing implementing the Node.js `stream.Transform` API",
"devDependencies": {
"@babel/cli": "^7.12.1",
"@babel/core": "^7.12.3",
"@babel/preset-env": "^7.12.1",
"@types/mocha": "^8.0.4",
"@types/node": "^14.14.7",
"browserify": "^17.0.0",
"coffeescript": "^2.5.1",
"csv-generate": "^3.2.4",
"csv-spectrum": "^1.0.0",
"each": "^1.2.2",
"eslint": "^7.13.0",
"mocha": "^8.2.1",
"pad": "^3.2.0",
"should": "^13.2.3",
"stream-transform": "^2.0.2",
"ts-node": "^9.0.0",
"typescript": "^4.0.5"
},
"files": [
"/lib"
],
"homepage": "https://csv.js.org/parse/",
"keywords": [
"csv",
"parse",
"parser",
"convert",
"tsv",
"stream"
],
"license": "MIT",
"main": "./lib",
"mocha": {
"throw-deprecation": true,
"require": [
"should",
"coffeescript/register",
"ts-node/register"
],
"inline-diffs": true,
"timeout": 40000,
"reporter": "spec",
"recursive": true
},
"name": "csv-parse",
"optionalDependencies": {},
"repository": {
"type": "git",
"url": "git+https://github.com/wdavidw/node-csv-parse.git"
},
"scripts": {
"build": "npm run build:babel && npm run build:browserify",
"build:babel": "cd lib && babel *.js -d es5 && cd ..",
"build:browserify": "browserify lib/index.js --standalone stringify > lib/browser/index.js && browserify lib/sync.js --standalone stringify > lib/browser/sync.js",
"lint": "eslint lib/*.js",
"major": "npm version major -m 'Bump to version %s'",
"minor": "npm version minor -m 'Bump to version %s'",
"patch": "npm version patch -m 'Bump to version %s'",
"postversion": "git push && git push --tags && npm publish",
"pretest": "npm run build",
"preversion": "grep '## Trunk' CHANGELOG.md && npm test && cp lib/*.ts lib/es5 && git add lib/es5/*.ts",
"test": "npm run lint && TS_NODE_COMPILER_OPTIONS='{\"strictNullChecks\":true}' mocha test/**/*.{coffee,ts}",
"version": "version=`grep '^ \"version\": ' package.json | sed 's/.*\"\\([0-9\\.]*\\)\".*/\\1/'` && sed -i \"s/## Trunk/## Version $version/\" CHANGELOG.md && git add CHANGELOG.md"
},
"types": "./lib/index.d.ts",
"version": "4.15.0"
}