109 lines
2.7 KiB
JSON
109 lines
2.7 KiB
JSON
{
|
|
"name": "csv",
|
|
"version": "6.0.4",
|
|
"description": "A mature CSV toolset with simple api, full of options and tested against large datasets.",
|
|
"keywords": [
|
|
"node",
|
|
"csv",
|
|
"tsv",
|
|
"parser",
|
|
"parse",
|
|
"stringifier",
|
|
"stringify",
|
|
"transform",
|
|
"stream",
|
|
"generate",
|
|
"generation"
|
|
],
|
|
"bugs": "https://github.com/adaltas/node-csv/issues",
|
|
"author": "David Worms <david@adaltas.com> (https://www.adaltas.com)",
|
|
"contributors": [
|
|
"David Worms <david@adaltas.com> (https://www.adaltas.com)"
|
|
],
|
|
"dependencies": {
|
|
"csv-generate": "^4.0.3",
|
|
"csv-parse": "^5.0.3",
|
|
"csv-stringify": "^6.0.4",
|
|
"stream-transform": "^3.0.3"
|
|
},
|
|
"devDependencies": {
|
|
"@rollup/plugin-eslint": "^8.0.1",
|
|
"@rollup/plugin-node-resolve": "^13.0.6",
|
|
"@types/mocha": "^9.0.0",
|
|
"@types/node": "^16.11.7",
|
|
"@types/should": "^13.0.0",
|
|
"coffeescript": "~2.6.1",
|
|
"eslint": "^8.2.0",
|
|
"mocha": "~9.1.3",
|
|
"rollup": "^2.60.0",
|
|
"rollup-plugin-node-builtins": "^2.1.2",
|
|
"rollup-plugin-node-globals": "^1.4.0",
|
|
"should": "~13.2.3",
|
|
"ts-node": "^10.4.0",
|
|
"typescript": "^4.4.4"
|
|
},
|
|
"engines": {
|
|
"node": ">= 0.1.90"
|
|
},
|
|
"exports": {
|
|
".": {
|
|
"import": "./lib/index.js",
|
|
"require": "./dist/cjs/index.cjs"
|
|
},
|
|
"./sync": {
|
|
"import": "./lib/sync.js",
|
|
"require": "./dist/cjs/sync.cjs"
|
|
},
|
|
"./browser/esm/": "./dist/esm/"
|
|
},
|
|
"homepage": "https://csv.js.org/",
|
|
"files": [
|
|
"dist",
|
|
"lib"
|
|
],
|
|
"license": "MIT",
|
|
"main": "./dist/cjs/index.cjs",
|
|
"mocha": {
|
|
"inline-diffs": true,
|
|
"loader": "./test/loaders/all.mjs",
|
|
"recursive": true,
|
|
"reporter": "spec",
|
|
"require": [
|
|
"should"
|
|
],
|
|
"throw-deprecation": true,
|
|
"timeout": 40000
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/adaltas/node-csv.git",
|
|
"directory": "packages/csv"
|
|
},
|
|
"scripts": {
|
|
"build": "npm run build:rollup && npm run build:ts",
|
|
"build:rollup": "npx rollup -c",
|
|
"build:ts": "cp lib/*.ts dist/cjs && cp lib/*.ts dist/esm",
|
|
"lint": "npm run lint:lib && npm run lint:samples && npm run lint:test",
|
|
"lint:lib": "eslint --fix lib/*.js",
|
|
"lint:samples": "eslint --fix samples/*.js",
|
|
"lint:test": "coffeelint --fix test/*.coffee",
|
|
"preversion": "npm run build && git add dist",
|
|
"pretest": "npm run build",
|
|
"test": "mocha 'test/**/*.{coffee,ts}'",
|
|
"test:legacy": "mocha --loader=./test/loaders/legacy/all.mjs 'test/**/*.{coffee,ts}'"
|
|
},
|
|
"type": "module",
|
|
"types": "dist/esm/index.d.ts",
|
|
"typesVersions": {
|
|
"*": {
|
|
".": [
|
|
"dist/esm/index.d.ts"
|
|
],
|
|
"sync": [
|
|
"dist/esm/sync.d.ts"
|
|
]
|
|
}
|
|
},
|
|
"gitHead": "8bdbe7ef8b4ff626fcd79d39b273a8bee7f278fb"
|
|
}
|