forked from payroll-drive/gmail-send
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
54 lines (54 loc) · 2.04 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{
"name": "gmail-send",
"version": "1.2.11",
"description": "Minimalistic module to send emails using GMail",
"main": "./index.js",
"scripts": {
"nsp": "nsp check",
"_deps-check": "npm-check-updates --error-level 2",
"_deps-update": "echo '* Updating packages versions... '; npm-check-updates -u --upgradeAll --error-level 1 && npm install",
"_check-changes": "echo '* Checking if git directory is clean... '; bash -c '[[ -z $(git status -uno --porcelain) ]]'",
"update-deps": "npm run _check-changes && npm run _deps-update && git commit -am 'updated deps'",
"lint": "eslint -f unix .",
"inspect": "jsinspect",
"pretest": "npm run lint && npm run inspect && npm run nsp && npm run _deps-check",
"_test": "echo \"Warning: no test specified\" && exit 0",
"test": "echo \"Warning: no test specified; imitating clean result....\" && exit 0",
"_commit": "git commit -am \"commit by 'npm run commit'\"",
"_push": "git push --follow-tags",
"commit-and-push": "npm run _commit && npm test && npm run _push",
"_patch-release": "npm version patch && npm publish",
"_minor-release": "npm version minor && npm publish",
"_major-release": "npm version major && npm publish",
"patch-release": "npm test && npm run _patch-release && npm run _push",
"minor-release": "npm test && npm run _minor-release && npm run _push",
"__major-release": "npm test && npm run _major-release && npm run _push"
},
"repository": {
"type": "git",
"url": "https://github.com/alykoshin/gmail-send.git"
},
"keywords": [
"gmail",
"gmailer",
"email",
"smtp"
],
"author": "Alexander Lykoshin <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/alykoshin/gmail-send/issues"
},
"homepage": "https://github.com/alykoshin/gmail-send",
"dependencies": {
"lodash": "^4.17.4",
"nodemailer": "^4.0.1"
},
"devDependencies": {
"eslint": "^4.1.1",
"jshint": "^2.9.5",
"jsinspect": "^0.12.6",
"npm-check-updates": "^2.12.1",
"nsp": "^2.6.3"
}
}