UNPKG

notification-service-sdk

Version:

A Node.js notification service SDK supporting email and SMS providers

60 lines (59 loc) 1.42 kB
{ "name": "notification-service-sdk", "version": "1.0.0", "description": "A Node.js notification service SDK supporting email and SMS providers", "main": "dist/index.js", "types": "dist/index.d.ts", "scripts": { "build": "tsc", "prepublishOnly": "npm run build", "test": "jest", "lint": "eslint src/**/*.ts" }, "keywords": [ "notification", "email", "sms", "nodemailer", "aliyun", "volcengine", "huawei" ], "author": "", "license": "MIT", "dependencies": { "@alicloud/dysmsapi20180501": "^1.0.8", "@alicloud/sms-sdk": "^1.1.6", "@huaweicloud/huaweicloud-sdk-core": "^3.1.56", "@huaweicloud/huaweicloud-sdk-msgsms": "^3.1.151", "@huaweicloud/huaweicloud-sdk-sms": "^3.1.56", "@volcengine/openapi": "^1.12.0", "axios": "^1.9.0", "crypto": "^1.0.1", "https": "^1.0.0", "nodemailer": "^6.9.5", "path": "^0.12.7", "querystring": "^0.2.1", "util": "^0.12.5" }, "devDependencies": { "@types/jest": "^29.5.5", "@types/node": "^20.6.3", "@types/nodemailer": "^6.4.10", "@typescript-eslint/eslint-plugin": "^6.7.2", "@typescript-eslint/parser": "^6.7.2", "eslint": "^8.49.0", "jest": "^29.7.0", "ts-jest": "^29.1.1", "typescript": "^5.2.2" }, "files": [ "dist/**/*" ], "engines": { "node": ">=14.0.0" }, "publishConfig": { "access": "public" } }