112 lines
3.3 KiB
JSON
112 lines
3.3 KiB
JSON
{
|
|
"_from": "csv-stringify@^5.3.6",
|
|
"_id": "csv-stringify@5.6.1",
|
|
"_inBundle": false,
|
|
"_integrity": "sha512-JlQlNZMiuRGSFbLXFNGoBtsORXlkqf4Dfq8Ee0Jo4RVJj3YAUzevagUx24mDrQJLDF7aYz6Ne8kqA8WWBaYt2A==",
|
|
"_location": "/csv-stringify",
|
|
"_phantomChildren": {},
|
|
"_requested": {
|
|
"type": "range",
|
|
"registry": true,
|
|
"raw": "csv-stringify@^5.3.6",
|
|
"name": "csv-stringify",
|
|
"escapedName": "csv-stringify",
|
|
"rawSpec": "^5.3.6",
|
|
"saveSpec": null,
|
|
"fetchSpec": "^5.3.6"
|
|
},
|
|
"_requiredBy": [
|
|
"/csv"
|
|
],
|
|
"_resolved": "https://registry.npmjs.org/csv-stringify/-/csv-stringify-5.6.1.tgz",
|
|
"_shasum": "d790bca20f20ed5a8887a3dce3ac458d611cd2e0",
|
|
"_spec": "csv-stringify@^5.3.6",
|
|
"_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/adaltas/node-csv-stringify/issues"
|
|
},
|
|
"bundleDependencies": false,
|
|
"coffeelintConfig": {
|
|
"indentation": {
|
|
"level": "error",
|
|
"value": 2
|
|
},
|
|
"line_endings": {
|
|
"level": "error",
|
|
"value": "unix"
|
|
},
|
|
"max_line_length": {
|
|
"level": "ignore"
|
|
}
|
|
},
|
|
"dependencies": {},
|
|
"deprecated": false,
|
|
"description": "CSV stringifier 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",
|
|
"@types/should": "^13.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"
|
|
],
|
|
"homepage": "https://csv.js.org/stringify/",
|
|
"keywords": [
|
|
"csv",
|
|
"stringify",
|
|
"stringifier"
|
|
],
|
|
"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-stringify",
|
|
"optionalDependencies": {},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+ssh://git@github.com/adaltas/node-csv-stringify.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",
|
|
"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": "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": "5.6.1"
|
|
}
|