UNPKG

zerobounce

Version:
46 lines (45 loc) 1.26 kB
{ "name": "zerobounce", "version": "0.3.0", "description": "ZeroBounce Email Verification Library", "main": "dist/index.js", "types": "dist/index.d.ts", "files": [ "dist/**/*" ], "repository": { "type": "git", "url": "git+https://github.com/twisted1919/zerobounce-ts.git" }, "homepage": "https://github.com/twisted1919/zerobounce-ts#readme", "bugs": { "url": "https://github.com/twisted1919/zerobounce-ts/issues" }, "keywords": ["zerobounce", "email validation", "email bounce"], "author": "twisted1919", "license": "MIT", "scripts": { "build": "tsc", "format": "prettier --write \"src/**/*.ts\"", "lint": "tslint -p tsconfig.json", "test": "jest --config jestconfig.json", "pack": "npm pack", "prepare" : "npm run build", "prepublishOnly" : "npm test && npm run lint", "preversion" : "npm run lint", "version" : "npm run format && git add -A src", "postversion" : "git push && git push --tags" }, "devDependencies": { "@types/jest": "^28.1.7", "jest": "^28.1.3", "prettier": "^2.7.1", "ts-jest": "^28.0.8", "tslint": "^6.1.3", "tslint-config-prettier": "^1.18.0", "typescript": "^4.7.4" }, "dependencies": { "axios": "^0.27.2" } }