excel-csv-read-write
Version:
Excel and CSV read write utility.
89 lines • 2.49 kB
JSON
{
"name": "excel-csv-read-write",
"version": "0.2.6",
"description": "Excel and CSV read write utility.",
"main": "dist/commonUtils.js",
"types": "dist/commonUtils.d.ts",
"jest": {
"moduleFileExtensions": [
"ts",
"tsx",
"js"
],
"transform": {
"^.+\\.(ts|tsx)$": "ts-jest"
},
"globals": {
"ts-jest": {
"tsConfigFile": "tsconfig.json"
}
},
"testMatch": [
"**/__tests__/*.spec.+(ts|tsx|js)"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/masatomix/excel-csv-read-write.git"
},
"keywords": [
"typescript",
"javascript"
],
"author": "Masatomi KINO <masatomix@ki-no.org> (http://qiita.com/masatomix)",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/masatomix/excel-csv-read-write/issues"
},
"homepage": "https://github.com/masatomix/excel-csv-read-write#readme",
"devDependencies": {
"@eslint/js": "^9.28.0",
"@types/config": "^3.3.5",
"@types/jest": "^29.5.14",
"@types/node": "^24.0.0",
"@types/request": "^2.48.12",
"@types/unzip": "^0.1.4",
"@types/unzip-stream": "^0.3.4",
"@types/xlsx-populate": "git+https://github.com/JanLoebel/types-xlsx-populate.git",
"eslint": "^9.28.0",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-import": "^2.31.0",
"jest": "^30.0.0",
"npm-run-all": "^4.1.5",
"pino-pretty": "^13.0.0",
"prettier": "^3.5.3",
"rimraf": "^6.0.1",
"simple-git-hooks": "^2.13.0",
"ts-jest": "^29.3.4",
"typescript": "^5.8.3",
"typescript-eslint": "^8.34.0"
},
"dependencies": {
"axios": "^1.9.0",
"config": "^4.0.0",
"csvtojson": "^2.0.10",
"iconv-lite": "^0.6.3",
"jszip": "^3.10.1",
"pino": "^9.7.0",
"request": "^2.88.2",
"unzip": "^0.1.11",
"unzip-stream": "^0.3.4",
"xlsx-populate": "^1.21.0"
},
"scripts": {
"dev": "ts-node src/commonUtils.ts",
"dev:watch": "ts-node-dev --respawn src/index.ts",
"lint:es": "eslint 'src/**/*.{js,jsx,ts,tsx}'",
"lint:es:fix": "eslint --fix 'src/**/*.{js,jsx,ts,tsx}'",
"lint": "eslint . --ext .ts,.tsx",
"clean:modules": "rimraf node_modules",
"clean": "rimraf dist",
"tsc": "tsc",
"build": "npm-run-all clean tsc",
"pack": "npm pack",
"start": "node .",
"test": "NODE_ENV= jest --coverage --runInBand",
"test-actions": "NODE_ENV= jest --runInBand",
"prepublish": "npm run build"
}
}