emailjs-smtp-client
Version:
SMTP Client allows you to connect to an SMTP server in JS.
24 lines (23 loc) • 509 B
JSON
{
"version": "0.2.0",
"configurations": [
{
"name": "Run ES6 Tests",
"type": "node",
"request": "launch",
"cwd": "${workspaceRoot}",
"program": "${workspaceRoot}/node_modules/mocha/bin/_mocha",
"stopOnEntry": false,
"args": [
"./src/*-unit.js",
"--require", "babel-register", "testutils.js",
"--reporter", "spec",
"--no-timeouts"
],
"runtimeArgs": [
"--nolazy"
],
"sourceMaps": true
}
]
}