UNPKG

e2e-mailbox

Version:

E2E test your email notification system using GuerrillaMail API.

52 lines (51 loc) 1.33 kB
{ "name": "e2e-mailbox", "version": "1.1.7", "description": "E2E test your email notification system using GuerrillaMail API.", "main": "dist/lib/index.js", "module": "dist/esm/index.mjs", "exports": { "import": "./dist/esm/index.mjs", "require": "./dist/lib/index.js" }, "types": "dist/lib/index.d.ts", "author": "Allyn Sweet", "license": "MIT", "keywords": [ "e2e", "email", "testing", "guerrillamail", "integration" ], "repository": { "type": "git", "url": "https://github.com/allynsweet/E2E-Mailbox.git" }, "scripts": { "build": "tsc && tsc --project tsconfig.esm.json", "postbuild": "find dist/esm -name '*.js' -exec bash -c 'mv \"$0\" \"${0%.js}.mjs\"' {} \\;", "format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"", "lint": "tslint -p tsconfig.json", "test": "jest --config jestconfig.json", "prepare": "yarn build && yarn lint && yarn test" }, "devDependencies": { "@types/jest": "^26.0.23", "@types/mailparser": "^3.4.3", "jest": "^29.7.0", "prettier": "^2.3.1", "ts-jest": "^29.1.1", "tslint": "^6.1.3", "tslint-config-prettier": "^1.18.0", "typescript": "^4.3.4" }, "dependencies": { "axios": "1.7.4", "mailparser": "^3.6.5" }, "files": [ "dist", "README.md" ] }