{
    "name": "node-encryption",
    "version": "2.0.1",
    "description": "This package will simplify the process of encrypting and decrypting data for your application providing robust AES-256-GCM encryption and decryption utilities for protecting sensitive data.",
    "main": "dist/index.js",
    "types": "dist/main.d.ts",
    "scripts": {
        "test": "mocha --require ts-node/register test.ts",
        "build": "tsc --p tsconfig.json",
        "prepublishOnly": "npm test && npm run build"
    },
    "repository": {
        "type": "git",
        "url": "git+https://github.com/sy2x/node-encryption.git"
    },
    "keywords": [
        "encrypt",
        "decrypt",
        "encryption",
        "decryption",
        "aes-256-gcm",
        "aes",
        "gcm",
        "security",
        "privacy",
        "gdpr"
    ],
    "author": "sy2x",
    "license": "MIT",
    "bugs": {
        "url": "https://github.com/sy2x/node-encryption/issues"
    },
    "homepage": "https://github.com/sy2x/node-encryption#readme",
    "devDependencies": {
        "@tsconfig/node-lts": "^20.1.3",
        "@types/mocha": "^10.0.6",
        "@types/node": "^20.12.11",
        "mocha": "^9.1.2",
        "ts-node": "^10.9.2",
        "typescript": "^5.4.5"
    }
}
