UNPKG

dkim-verifier

Version:

DKIM Signature Verifier in TypeScript

50 lines (49 loc) 1.17 kB
{ "name": "dkim-verifier", "version": "0.0.11", "author": { "name": "Ash Whitehat", "url": "https://github.com/ashwhitehat" }, "description": "DKIM Signature Verifier in TypeScript", "repository": { "type": "git", "url": "git@github.com:invers-technology/dkim-ts.git" }, "homepage": "https://github.com/invers-technology/dkim-ts", "keywords": [ "dkim", "dkim-signature", "typescript" ], "license": "Apache-2.0", "main": "index.js", "types": "index.d.ts", "files": [ "*.js", "*.d.ts", "*.map" ], "private": false, "scripts": { "lint": "eslint src", "fmt": "prettier --write .", "fmt:check": "prettier --check src tests", "build": "tsc", "prepublishOnly": "rm -rf dist && yarn build && cp -r dist/* . && rm -rf dist", "test": "jest" }, "devDependencies": { "@types/imap": "^0.8.42", "@types/jest": "^29.5.14", "@types/node": "^22.14.1", "dotenv": "^16.5.0", "eslint": "^9.25.0", "imap": "^0.8.19", "jest": "^29.7.0", "prettier": "^3.5.3", "ts-jest": "^29.3.2", "typescript": "^5.8.3", "typescript-eslint": "^8.30.1" } }