-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.18 KB
/
Copy pathpackage.json
File metadata and controls
82 lines (82 loc) · 2.18 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "adonis-email-guard",
"version": "0.1.0",
"description": "AdonisJS v5 package: email validation (syntax, MX, SMTP, disposable, spam-trap) + DB-backed suppression list with configurable table and auto-create.",
"main": "build/providers/EmailGuardProvider.js",
"types": "build/adonis-typings/index.d.ts",
"files": [
"build/adonis-typings",
"build/providers",
"build/src",
"build/instructions.js",
"build/instructions.md",
"build/templates"
],
"scripts": {
"build": "npm run compile",
"compile": "rm -rf build && tsc && npm run copy:assets",
"copy:assets": "cp instructions.md build/ && mkdir -p build/templates && cp templates/config.txt build/templates/",
"prepublishOnly": "npm run build && npm test",
"lint": "eslint . --ext=.ts",
"format": "prettier --write .",
"test": "tsx --test test/*.spec.ts"
},
"keywords": [
"adonisjs",
"adonis",
"adonis5",
"email",
"email-validation",
"suppression-list",
"bounce",
"spam-trap",
"disposable-email",
"mx-record"
],
"license": "MIT",
"author": "shakilhossain-cse <shakilhossainp.cse@gmail.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/shakilhossain-cse/adonis-email-guard.git"
},
"bugs": {
"url": "https://github.com/shakilhossain-cse/adonis-email-guard/issues"
},
"homepage": "https://github.com/shakilhossain-cse/adonis-email-guard#readme",
"peerDependencies": {
"@adonisjs/core": "^5.0.0",
"@adonisjs/lucid": "^18.0.0"
},
"devDependencies": {
"@adonisjs/core": "^5.9.0",
"@adonisjs/lucid": "^18.4.0",
"@types/better-sqlite3": "^7.6.0",
"@types/node": "^20.0.0",
"better-sqlite3": "^11.0.0",
"knex": "^3.0.0",
"tsx": "^4.7.0",
"typescript": "^5.0.0"
},
"engines": {
"node": ">=18.0.0"
},
"adonisjs": {
"instructionsMd": "./build/instructions.md",
"types": "adonis-email-guard",
"providers": [
"adonis-email-guard"
],
"templates": {
"config": [
{
"src": "config/email-guard.txt",
"dest": "email-guard"
}
]
}
},
"publishConfig": {
"access": "public",
"tag": "latest"
}
}