-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
48 lines (48 loc) · 1.13 KB
/
Copy pathpackage.json
File metadata and controls
48 lines (48 loc) · 1.13 KB
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
{
"name": "@momsfriendlydevco/send",
"version": "1.1.1",
"description": "Simple notification system with extendable modules",
"scripts": {
"lint": "eslint ."
},
"type": "module",
"bin": {
"send": "./app.js"
},
"imports": {
"#lib/*": "./lib/*.js",
"#modules/*": "./modules/*.js"
},
"exports": {
".": "./lib/send.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MomsFriendlyDevCo/send.git"
},
"author": "Matt Carter <matt@mfdc.biz>",
"bugs": {
"url": "https://github.com/MomsFriendlyDevCo/send/issues"
},
"homepage": "https://github.com/MomsFriendlyDevCo/send#readme",
"engineStrict": true,
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@momsfriendlydevco/joyful": "^1.0.1",
"@slack/web-api": "^7.3.4",
"axios": "^1.7.5",
"commander": "^9.4.1",
"commander-extras": "^1.4.0",
"nodemailer": "^6.9.14",
"nodemailer-mailgun-transport": "^2.1.5",
"split-string": "^6.1.0"
},
"devDependencies": {
"@momsfriendlydevco/eslint-config": "^2.0.4",
"chai": "^5.1.1",
"eslint": "^9.9.1",
"mocha": "^10.7.3"
}
}