-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 1011 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 1011 Bytes
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
{
"name": "mailgun-send-cli",
"version": "0.3.1",
"description": "Quickly send HTML emails from the command line using the Mailgun [http://www.mailgun.com/] API.",
"author": "Pete Droll <droll.p@gmail.com> (https://github.com/pdroll/)",
"repository": {
"type": "git",
"url": "https://github.com/pdroll/mailgun-send-cli"
},
"license": "MIT",
"main": "./lib/MailgunSend.js",
"bin": {
"mailgun-send": "./bin/mailgun-send.js"
},
"preferGlobal": true,
"engine": {
"node": ">=12"
},
"dependencies": {
"commander": "^6.2.1",
"keytar": "^7.3.0",
"mailgun.js": "^2.0.6",
"readline-sync": "^1.4.10",
"validate.js": "^0.13.1"
},
"devDependencies": {
"eslint": "^7.17.0",
"eslint-config-airbnb-base": "^14.2.1",
"eslint-plugin-import": "^2.22.1",
"eslint-plugin-jest": "^24.1.3",
"faker": "^5.1.0",
"jest": "^26.6.3"
},
"scripts": {
"test": "jest --coverage",
"test:watch": "jest --watch",
"lint": "eslint ."
}
}