UNPKG

csv-transpose

Version:

Transpose (rotate) data from rows to columns or vice verse in csv

53 lines (52 loc) 1.27 kB
{ "name": "csv-transpose", "description": "Transpose (rotate) data from rows to columns or vice verse in csv", "version": "1.2.0", "main": "lib/core.js", "types": "lib/core.d.ts", "bin": { "csv-transpose": "./csv-transpose", "tsv-transpose": "./tsv-transpose" }, "scripts": { "test": "tsc -p . --noEmit", "clean": "rimraf dist", "tsc": "tsc -p .", "bundle": "esbuild --bundle --platform=node lib/core.ts --outfile=lib/core.js", "build": "run-s clean tsc bundle" }, "keywords": [ "csv", "tsv", "transpose", "cli", "cmd", "utils" ], "author": "Beeno Tung", "license": "BSD-2-Clause", "files": [ "./cli/main.js", "./cli/main.d.ts", "./lib/core.js", "./lib/core.d.ts" ], "devDependencies": { "@beenotung/tslib": "^18.0.0", "@types/node": "^17.0.21", "esbuild": "^0.14.23", "npm-run-all": "^4.1.5", "rimraf": "^3.0.2", "ts-node": "^10.5.0", "ts-node-dev": "^1.1.8", "typescript": "^4.5.5" }, "repository": { "type": "git", "url": "git+https://github.com/beenotung/csv-transpose.git" }, "bugs": { "url": "https://github.com/beenotung/csv-transpose/issues" }, "homepage": "https://github.com/beenotung/csv-transpose#readme" }