e2ee-ts
Version:
A module that provides RSA & AES encryption interfaces
47 lines (46 loc) • 1.08 kB
JSON
{
"name": "e2ee-ts",
"version": "1.0.6",
"description": "A module that provides RSA & AES encryption interfaces",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/https-sam/end-to-end-encryption"
},
"files": [
"dist"
],
"scripts": {
"start:dev": "npx nodemon",
"test": "jest",
"build": "rm -rf dist/ && tsc --build",
"clean": "tsc --build --clean",
"lint": "npx eslint src/"
},
"keywords": [
"End to End",
"Encryption",
"Cryptography",
"e2ee"
],
"author": "Sam Goto",
"license": "ISC",
"devDependencies": {
"@types/jest": "^29.5.0",
"@types/node": "^18.15.10",
"@typescript-eslint/eslint-plugin": "^5.57.0",
"@typescript-eslint/parser": "^5.57.0",
"eslint": "^8.37.0",
"eslint-config-standard-with-typescript": "^34.0.1",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-n": "^15.0.0",
"eslint-plugin-promise": "^6.0.0",
"jest": "^29.5.0",
"nodemon": "^2.0.22",
"ts-jest": "^29.0.5",
"tsc": "^2.0.4",
"typescript": "^5.0.2"
},
"dependencies": {}
}