UNPKG

base64-ct

Version:

Safe, constant-time Base64 encoding and decoding in pure JavaScript, with support for common Base64 variants.

56 lines (55 loc) 1.36 kB
{ "name": "base64-ct", "version": "1.1.0", "description": "Safe, constant-time Base64 encoding and decoding in pure JavaScript, with support for common Base64 variants.", "type": "module", "main": "dist/main.js", "types": "dist/main.d.ts", "typings": "dist/main.d.ts", "files": [ "dist", "README.md", "LICENSE" ], "scripts": { "build": "tsc", "prepublishOnly": "npm run build", "test": "jest", "test:watch": "jest --watch", "test:coverage": "jest --coverage", "lint": "eslint \"**/*.ts\"", "lint:fix": "eslint \"**/*.ts\" --fix" }, "repository": { "type": "git", "url": "git+https://github.com/jedisct1/js-base64-ct" }, "keywords": [ "typescript", "library", "base64", "cryptography", "constant-time", "security" ], "author": "Frank Denis", "license": "MIT", "bugs": { "url": "https://github.com/jedisct1/js-base64-ct/issues" }, "homepage": "https://github.com/jedisct1/js-base64-ct", "devDependencies": { "@eslint/js": "^8.57.0", "@types/jest": "^29.5.12", "@typescript-eslint/eslint-plugin": "^7.3.1", "@typescript-eslint/parser": "^7.3.1", "eslint": "^8.57.0", "eslint-plugin-jest": "^27.9.0", "jest": "^29.7.0", "ts-jest": "^29.1.2", "typescript": "^5.5.0" }, "engines": { "node": ">=14.0.0" } }