-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 1.7 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
55
56
57
58
59
60
61
62
{
"name": "sender",
"version": "1.0.0",
"private": false,
"description": "An Node.js application to send bulk of email addresses from different sources via SendGird.",
"repository": {
"type": "git",
"url": "git://github.com/orassayag/sender.git"
},
"keywords": [
"send",
"emails",
"email addresses",
"sendgrid",
"templates"
],
"license": "UNLICENSED",
"author": "Or Assayag <orassayag@gmail.com>",
"contributors": [
{
"name": "Or Assayag",
"email": "orassayag@gmail.com",
"url": "https://github.com/orassayag"
}
],
"main": "src/scripts/send.script.js",
"files": [
"src",
".eslintignore",
".eslintrc",
".gitignore",
".jsbeautifyrc",
".npmignore",
"INSTRUCTIONS.md",
"package-lock.json",
"package.json",
"README.md"
],
"scripts": {
"backup": "node --es-module-specifier-resolution=node src/scripts/backup.script.js",
"sand": "node --es-module-specifier-resolution=node src/tests/sandBox.test.js",
"send": "node --es-module-specifier-resolution=node src/tests/sendEmail.test.js",
"status": "node --es-module-specifier-resolution=node src/scripts/status.script.js",
"start": "node --es-module-specifier-resolution=node src/scripts/send.script.js",
"postinstall": "node --es-module-specifier-resolution=node src/scripts/initiate.script.js",
"stop": "taskkill -f -im node.exe"
},
"type": "module",
"engines": {
"node": "^12.20.0 || ^14.13.1 || >=16.0.0"
},
"dependencies": {
"@sendgrid/mail": "^8.1.4",
"fs-extra": "^11.3.0",
"is-reachable": "^5.2.1",
"log-update": "^6.1.0",
"mongoose": "^8.9.6"
},
"devDependencies": {
"eslint": "^9.19.0"
}
}