text-encrypter
Version:
The library to encrypt/decrypt text using caesar cipher mechanism
61 lines (60 loc) • 1.73 kB
JSON
{
"name": "text-encrypter",
"version": "1.1.0",
"description": "The library to encrypt/decrypt text using caesar cipher mechanism",
"type": "module",
"source": "src/index.ts",
"exports": {
"require": "./dist/index.cjs",
"default": "./dist/index.modern.js"
},
"main": "./dist/index.cjs",
"module": "./dist/index.module.js",
"unpkg": "./dist/index.umd.js",
"types": "./dist/index.d.ts",
"scripts": {
"build": "rm -rf ./dist && microbundle --tsconfig ./tsconfig.json",
"dev": "microbundle watch",
"prepare": "husky install",
"lint": "eslint src test",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/yousufkalim/text-encrypter.git"
},
"keywords": [
"text",
"encrypt",
"decrypt",
"caesar",
"cipher"
],
"author": "Yousuf Kalim <yousufkalim@outlook.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/yousufkalim/text-encrypter/issues"
},
"homepage": "https://github.com/yousufkalim/text-encrypter#readme",
"devDependencies": {
"@commitlint/cli": "^17.1.2",
"commitlint-config-non-conventional": "^1.0.1",
"eslint": "^8.24.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"husky": "^8.0.0",
"jest": "^29.3.1",
"lint-staged": "^13.0.3",
"microbundle": "^0.15.1",
"prettier": "^2.7.1",
"pretty-quick": "^3.1.3",
"@types/jest": "^29.2.5",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"eslint-config-standard-with-typescript": "^24.0.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.0.0",
"ts-jest": "^29.0.3",
"typescript": "*"
}
}