@ntegral/nestjs-sendgrid-client
Version:
Provides an injectable SendGrid Client for the SendGrid v3 Web API
68 lines (67 loc) • 1.66 kB
JSON
{
"contributors": [
{
"name": "Dexter Hardy",
"email": "dexter.hardy@ntegral.com",
"url": "http://www.ntegral.com"
}
],
"name": "@ntegral/nestjs-sendgrid-client",
"version": "1.0.3",
"description": "Provides an injectable SendGrid Client for the SendGrid v3 Web API",
"directories": {
"lib": "lib"
},
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"scripts": {
"build": "tsc -p tsconfig.build.json",
"clean": "rm -rf dist",
"format": "prettier --write \"lib/**/*.ts\"",
"publish:npm": "npm publish --access public",
"test": "jest",
"test:watch": "jest --watch",
"test:cov": "jest --coverage",
"test:debug": "node --inspect-brk -r tsconfig-paths/register -r ts-node/register node_modules/.bin/jest --runInBand"
},
"keywords": [
"SendGrid",
"Twilio",
"Node",
"NestJs",
"API"
],
"author": "ntegral inc.",
"license": "ISC",
"devDependencies": {
"@nestjs/common": "^7.0.13",
"@nestjs/core": "^7.0.13",
"@nestjs/testing": "^7.0.13",
"@types/jest": "^25.2.2",
"jest": "^26.0.1",
"prettier": "^2.0.5",
"reflect-metadata": "^0.1.13",
"rxjs": "^6.5.5",
"ts-jest": "^25.5.1",
"tsconfig-paths": "^3.9.0",
"typescript": "^3.9.2"
},
"dependencies": {
"@ntegral/sendgrid-client": "^1.0.2",
"@sendgrid/client": "^7.1.1"
},
"jest": {
"moduleFileExtensions": [
"js",
"json",
"ts"
],
"rootDir": "lib",
"testRegex": ".spec.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}