@kadirkiras/json-excel-converter
Version:
A Node.js application to convert between JSON and Excel formats
60 lines (59 loc) • 1.28 kB
JSON
{
"name": "@kadirkiras/json-excel-converter",
"version": "1.0.5",
"description": "A Node.js application to convert between JSON and Excel formats",
"main": "index.js",
"bin": {
"json-excel-converter": "./cli.js"
},
"scripts": {
"start": "node index.js",
"convert": "node cli.js",
"test": "node cli.js sample-data.json",
"prepublishOnly": "npm test",
"clean": "rimraf dist",
"build": "npm run clean && tsc"
},
"files": [
"index.js",
"cli.js",
"LICENSE",
"README.md"
],
"keywords": [
"json",
"excel",
"converter",
"xlsx",
"xls",
"json-to-excel",
"excel-to-json",
"export",
"import",
"spreadsheet"
],
"author": "Kadir Kiraş",
"license": "MIT",
"homepage": "https://github.com/kadirkiras/json-excel-converter#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/kadirkiras/json-excel-converter.git"
},
"bugs": {
"url": "https://github.com/kadirkiras/json-excel-converter/issues"
},
"dependencies": {
"exceljs": "^4.4.0"
},
"engines": {
"node": ">=16.0.0"
},
"devDependencies": {
"@types/node": "^20.11.24",
"typescript": "^5.3.3",
"rimraf": "^5.0.5"
},
"publishConfig": {
"access": "public"
}
}