Files
xen-orchestra/packages/xo-server-transport-email/package.json
T

92 lines
2.0 KiB
JSON
Raw Normal View History

2015-11-19 18:22:57 +01:00
{
"name": "xo-server-transport-email",
2017-01-12 16:24:45 +01:00
"version": "0.3.1",
2015-11-19 18:22:57 +01:00
"license": "AGPL-3.0",
2016-11-23 09:48:07 +01:00
"description": "xo-server plugin to send emails",
2015-11-19 18:22:57 +01:00
"keywords": [
"email",
2016-10-28 11:53:13 +02:00
"mail",
"orchestra",
"xen",
"xen-orchestra",
"xo-server"
2015-11-19 18:22:57 +01:00
],
2016-11-02 11:45:31 +01:00
"homepage": "https://github.com/vatesfr/xo-server-transport-email",
"bugs": "https://github.com/vatesfr/xo-server-transport-email/issues",
2015-11-19 18:22:57 +01:00
"repository": {
"type": "git",
2016-11-02 11:45:31 +01:00
"url": "https://github.com/vatesfr/xo-server-transport-email"
2015-11-19 18:22:57 +01:00
},
"author": {
"name": "Julien Fontanet",
"email": "julien.fontanet@isonoe.net"
},
"preferGlobal": false,
"main": "dist/",
"bin": {},
"files": [
"dist/"
],
2016-06-29 10:39:05 +02:00
"engines": {
2016-10-28 11:53:13 +02:00
"node": ">=4"
2016-06-29 10:39:05 +02:00
},
2015-11-19 18:22:57 +01:00
"dependencies": {
2017-01-12 16:23:21 +01:00
"lodash": "^4.17.4",
"nodemailer": "^2.7.0",
"nodemailer-markdown": "^1.0.1",
"promise-toolbox": "^0.8.0"
2015-11-19 18:22:57 +01:00
},
"devDependencies": {
2016-11-23 09:57:23 +01:00
"babel-cli": "^6.18.0",
"babel-eslint": "^7.1.1",
2017-01-12 16:23:21 +01:00
"babel-plugin-lodash": "^3.2.11",
"babel-preset-env": "^1.1.8",
"babel-preset-stage-3": "^6.17.0",
"cross-env": "^3.1.4",
"dependency-check": "^2.7.0",
"husky": "^0.12.0",
"jest": "^18.1.0",
2016-10-28 11:53:13 +02:00
"rimraf": "^2.5.4",
2017-01-12 16:23:21 +01:00
"standard": "^8.6.0"
2015-11-19 18:22:57 +01:00
},
"scripts": {
2016-10-28 11:53:13 +02:00
"build": "cross-env NODE_ENV=production babel --source-maps --out-dir=dist/ src/",
2017-01-12 16:23:21 +01:00
"commit-msg": "npm test",
2016-10-28 11:53:13 +02:00
"dev": "cross-env NODE_ENV=development babel --watch --source-maps --out-dir=dist/ src/",
2017-01-12 16:23:21 +01:00
"dev-test": "jest --bail --watch",
"posttest": "standard && dependency-check ./package.json",
"prebuild": "rimraf dist/",
"predev": "npm run prebuild",
"prepublish": "npm run build",
"test": "jest"
2016-06-29 10:39:05 +02:00
},
"babel": {
2017-01-12 16:23:21 +01:00
"plugins": [
"lodash"
],
2016-06-29 10:39:05 +02:00
"presets": [
2016-11-23 09:57:23 +01:00
[
"env",
{
"targets": {
"node": 4
}
}
],
2017-01-12 16:23:21 +01:00
"stage-3"
2016-06-29 10:39:05 +02:00
]
2015-11-19 18:22:57 +01:00
},
2017-01-12 16:23:21 +01:00
"jest": {
"testPathDirs": [
"<rootDir>/src"
],
"testRegex": "\\.spec\\.js$"
},
2015-11-19 18:22:57 +01:00
"standard": {
"ignore": [
2016-06-29 10:39:05 +02:00
"dist"
2015-11-19 18:22:57 +01:00
],
"parser": "babel-eslint"
}
}