json-as-xlsx-styled
Version:
Create excel xlsx file from json
68 lines (67 loc) • 1.57 kB
JSON
{
"name": "json-as-xlsx-styled",
"version": "1.0.1",
"license": "MIT",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"typings": "dist/index.d.ts",
"description": "Create excel xlsx file from json",
"author": "LuisEnMarroquin <luis@marroquin.dev>",
"homepage": "https://xlsx.marroquin.dev",
"type": "commonjs",
"private": false,
"scripts": {
"start": "tsc -p tsconfig.json --watch",
"build": "tsc -p tsconfig.json && uglifyjs dist/index.js --output dist/index.js",
"test": "jest --coverage"
},
"dependencies": {
"xlsx-js-style": "^1.2.0"
},
"devDependencies": {
"@testing-library/jest-dom": "^6.1.4",
"@types/jest": "^29.2.4",
"@types/node": "^20.8.7",
"@types/testing-library__jest-dom": "^6.0.0",
"jest": "^29.3.1",
"jest-cli": "^29.3.1",
"jest-environment-jsdom": "^29.3.1",
"ts-jest": "^29.0.3",
"typescript": "^4.9.3",
"uglify-js": "^3.17.4"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "https://github.com/LuisEnMarroquin/json-as-xlsx.git"
},
"bugs": {
"url": "https://github.com/LuisEnMarroquin/json-as-xlsx/issues"
},
"keywords": [
"json",
"xlsx",
"excel",
"jsonc",
"json-xlsx",
"xlsx-json",
"create-xlsx",
"create-excel",
"json-as-xlsx",
"json-to-xlsx",
"json-as-excel",
"json-to-excel",
"xlsx-as-json",
"xlsx-from-json",
"microsoft",
"microsoft-xlsx",
"microsoft-excel"
],
"browserslist": [
">0.2%",
"not dead",
"not op_mini all"
]
}