csv-stringify
Version:
CSV stringifier implementing the Node.js `stream.Transform` API
79 lines (78 loc) • 2.44 kB
JSON
{
"version": "5.6.2",
"name": "csv-stringify",
"description": "CSV stringifier implementing the Node.js `stream.Transform` API",
"keywords": [
"csv",
"stringify",
"stringifier"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "http://www.github.com/adaltas/node-csv-stringify"
},
"homepage": "https://csv.js.org/stringify/",
"author": "David Worms <david@adaltas.com> (https://www.adaltas.com)",
"coffeelintConfig": {
"indentation": {
"level": "error",
"value": 2
},
"line_endings": {
"level": "error",
"value": "unix"
},
"max_line_length": {
"level": "ignore"
}
},
"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",
"@types/should": "^13.0.0",
"babelify": "^10.0.0",
"browserify": "^17.0.0",
"coffeescript": "~2.5.1",
"csv-generate": "~3.2.4",
"each": "^1.2.2",
"express": "^4.17.1",
"mocha": "~8.2.1",
"should": "~13.2.3",
"ts-node": "^9.0.0",
"typescript": "^4.0.5"
},
"files": [
"/lib"
],
"main": "./lib",
"mocha": {
"throw-deprecation": true,
"require": [
"should",
"coffeescript/register",
"ts-node/register"
],
"inline-diffs": true,
"timeout": 40000,
"reporter": "spec",
"recursive": true
},
"scripts": {
"build:babel": "cd lib && babel *.js -d es5 && cd ..",
"build:browserify": "browserify lib/index.js --transform babelify --standalone stringify > lib/browser/index.js && browserify lib/sync.js --transform babelify --standalone stringify > lib/browser/sync.js",
"build": "npm run build:babel && npm run build:browserify",
"preversion": "grep '## Trunk' CHANGELOG.md && npm test && cp lib/*.ts lib/es5 && git add lib/es5/*.ts",
"version": "version=`grep '^ \"version\": ' package.json | sed 's/.*\"\\([0-9\\.]*\\)\".*/\\1/'` && sed -i \"s/## Trunk/## Version $version/\" CHANGELOG.md && git add CHANGELOG.md",
"postversion": "git push && git push --tags && npm publish",
"patch": "npm version patch -m 'Bump to version %s'",
"minor": "npm version minor -m 'Bump to version %s'",
"major": "npm version major -m 'Bump to version %s'",
"pretest": "npm run build",
"test": "mocha test/**/*.{coffee,ts}"
},
"types": "./lib/index.d.ts"
}