UNPKG

csv-generate

Version:

CSV and object generation implementing the Node.js `stream.Readable` API

90 lines (89 loc) 2.43 kB
{ "version": "4.0.1", "name": "csv-generate", "description": "CSV and object generation implementing the Node.js `stream.Readable` API", "keywords": [ "stream", "generate", "csv", "object" ], "bugs": "https://github.com/adaltas/node-csv-generate/issues", "author": "David Worms <david@adaltas.com> (https://www.adaltas.com)", "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", "each": "^1.2.2", "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" }, "exports": { ".": { "import": "./lib/index.js", "require": "./dist/cjs/index.cjs" }, "./sync": { "import": "./lib/sync.js", "require": "./dist/cjs/sync.cjs" } }, "files": [ "dist", "lib" ], "homepage": "https://csv.js.org/generate/", "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-generate" }, "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": "469fb3877909c5c2146b606becaad38210945e1d" }