astro-ghostcms/.pnpm-store/v3/files/3a/6ce8a99584de293265e076c77f7...

88 lines
2.1 KiB
Plaintext

{
"name": "csv",
"version": "5.5.3",
"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"
],
"homepage": "https://csv.js.org/",
"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)"
],
"license": "MIT",
"engines": {
"node": ">= 0.1.90"
},
"main": "./lib",
"repository": {
"type": "git",
"url": "https://github.com/adaltas/node-csv.git"
},
"coffeelintConfig": {
"indentation": {
"level": "error",
"value": 2
},
"line_endings": {
"level": "error",
"value": "unix"
},
"max_line_length": {
"level": "ignore"
}
},
"dependencies": {
"csv-generate": "^3.4.3",
"csv-parse": "^4.16.3",
"csv-stringify": "^5.6.5",
"stream-transform": "^2.1.3"
},
"devDependencies": {
"@babel/core": "^7.15.0",
"@types/mocha": "^9.0.0",
"@types/node": "^16.7.8",
"@types/should": "^13.0.0",
"babelify": "^10.0.0",
"browserify": "^17.0.0",
"coffeescript": "~2.5.1",
"mocha": "~9.1.1",
"should": "~13.2.3",
"ts-node": "^10.2.1",
"typescript": "^4.4.2"
},
"mocha": {
"throw-deprecation": true,
"require": [
"should",
"coffeescript/register",
"ts-node/register"
],
"inline-diffs": true,
"timeout": 40000,
"reporter": "spec",
"recursive": true
},
"files": [
"lib"
],
"scripts": {
"build": "browserify lib/index.js --transform babelify --standalone parse > lib/browser/index.js && browserify lib/sync.js --transform babelify --standalone parse > lib/browser/sync.js",
"preversion": "cp lib/*.ts lib/es5 && git add lib/es5/*.ts",
"test": "mocha test/**/*.{coffee,ts}"
},
"types": "./lib/index.d.ts",
"gitHead": "0fd5209b6862655c384cda052abf38019b959e70"
}