UNPKG

@nexckycort/rijndael-nodejs

Version:

implementation of the rijndael encryption algorithm.

66 lines (65 loc) 1.8 kB
{ "name": "@nexckycort/rijndael-nodejs", "version": "2.0.1", "description": "implementation of the rijndael encryption algorithm.", "main": "dist/rijndael.js", "engines": { "node": ">=14.17.3", "npm": ">=6.14.13" }, "private": false, "scripts": { "prepublish": "npm run build", "build": "rimraf dist && tsc", "test": "jest --forceExit --detectOpenHandles --coverage --verbose", "lint": "eslint . --ext .ts --fix", "format": "prettier --write src", "make-badges": "istanbul-badges-readme", "prepare": "husky install" }, "keywords": [ "rijndael", "typescript", "javascript", "node", "package" ], "author": "Nestor Cortina <nexckycort@gmail.com>", "license": "MIT", "repository": { "type": "git", "url": "https://github.com/nexckycort/rijndael-nodejs" }, "bugs": { "url": "https://github.com/nexckycort/rijndael-nodejs/issues" }, "homepage": "https://github.com/nexckycort/rijndael-nodejs#readme", "devDependencies": { "@commitlint/cli": "^13.2.1", "@commitlint/config-conventional": "^13.2.0", "@tsconfig/node14": "^1.0.1", "@types/jest": "^27.0.2", "@types/node": "^16.11.6", "@typescript-eslint/eslint-plugin": "^4.33.0", "eslint": "^7.32.0", "eslint-config-standard-with-typescript": "^21.0.1", "eslint-plugin-import": "^2.25.2", "eslint-plugin-node": "^11.1.0", "eslint-plugin-promise": "^5.1.1", "husky": "^7.0.0", "istanbul-badges-readme": "^1.6.0", "jest": "^27.3.1", "lint-staged": "^11.2.6", "prettier": "^2.4.1", "rimraf": "^3.0.2", "ts-jest": "^27.0.7", "ts-node": "^10.4.0", "tsconfig-paths": "^3.11.0", "typescript": "^4.4.4" }, "files": [ "dist", "package.json", "README.md" ] }