{ "name": "node-xlsx", "author": "Olivier Louvignes ", "version": "0.21.0", "description": "NodeJS Excel files parser & builder", "main": "lib/index.js", "types": "lib/index.d.ts", "bin": { "node-xlsx": "./lib/bin/cli.js" }, "scripts": { "start": "npm run spec -- --watch", "build": "rimraf lib/*; tsc --build", "lint": "eslint src/ test/", "prettycheck": "prettier --check src/ test/", "typecheck": "tsc --noEmit", "spec": "jest --runInBand", "test": "npm run lint && npm run prettycheck && npm run typecheck && npm run spec", "prepublish": "npm run build" }, "repository": "github:mgcrea/node-xlsx", "license": "Apache-2.0", "dependencies": { "xlsx": "^0.17.4" }, "devDependencies": { "@tsconfig/node10": "^1.0.8", "@types/jest": "^27.0.3", "@types/sodium-native": "^2.3.5", "@typescript-eslint/eslint-plugin": "^5.8.1", "@typescript-eslint/parser": "^5.8.1", "eslint": "^8.5.0", "eslint-config-prettier": "^8.3.0", "eslint-plugin-jest": "^25.3.0", "eslint-plugin-prettier": "^4.0.0", "jest": "^27.4.5", "prettier": "^2.5.1", "rimraf": "^3.0.2", "ts-jest": "^27.1.2", "ts-node": "^10.4.0", "typescript": "^4.5.4" }, "engines": { "node": ">=10.0.0" }, "keywords": [ "excel", "parser", "builder", "xlsx", "xls" ] }