UNPKG

xlsx-encrypter

Version:

Service for generating and encrypting Excel/XLSX files

79 lines (78 loc) 1.93 kB
{ "name": "xlsx-encrypter", "version": "2.1.1", "description": "Service for generating and encrypting Excel/XLSX files", "main": "dist/index.js", "source": "src/index.ts", "types": "dist/index.d.ts", "repository": "https://github.com/MrKiplin/xlsx-encrypter.git", "author": "Theodore J H Jones <https://github.com/MrKiplin>", "keywords": [ "excel", "workbook", "xlsx", "spreadsheet", "generate", "populate", "sheets", "generate", "encoding", "formatting", "encryption", "password" ], "license": "MIT", "scripts": { "test": "jest --runInBand", "lint": "eslint -c .eslintrc.js --ext .ts 'src/**/*.ts'", "start": "ts-node-dev src/index.ts", "build": "tsc -p ./tsconfig.build.json" }, "jest": { "globals": { "ts-jest": { "tsConfig": { "resolveJsonModule": true } } }, "transform": { "^.+\\.tsx?$": "ts-jest" }, "testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$", "moduleFileExtensions": [ "ts", "js", "json", "node" ], "testEnvironment": "node", "testURL": "http://localhost" }, "devDependencies": { "@types/jest": "^26.0.14", "@types/node": "^14.11.10", "@typescript-eslint/eslint-plugin": "^4.4.1", "@typescript-eslint/eslint-plugin-tslint": "^4.4.1", "@typescript-eslint/parser": "^4.4.1", "convert-excel-to-json": "^1.7.0", "eslint": "^7.11.0", "eslint-config-prettier": "^6.13.0", "eslint-plugin-jest": "^24.1.0", "eslint-plugin-prettier": "^3.1.4", "jest": "^26.5.3", "prettier": "^2.1.2", "tmp-promise": "^2.0.2", "ts-jest": "^26.4.1", "ts-node-dev": "^1.0.0", "typescript": "^4.0.3" }, "peerDependencies": { "xlsx": "^0.13.4", "xlsx-populate": "^1.17.0" }, "dependencies": { "xlsx": "^0.13.4", "xlsx-populate": "^1.17.0" } }