-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.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
{
"name": "@sefinek/email-validator",
"version": "1.0.3",
"description": "Lightweight npm module for email address validation.",
"keywords": [
"email",
"email-address-validator",
"email-checker",
"email-validator",
"email-verifier",
"email-verify",
"emails",
"syntax",
"validation",
"validator"
],
"homepage": "https://github.com/sefinek24/email-validator#readme",
"bugs": {
"url": "https://github.com/sefinek24/email-validator/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sefinek24/email-validator.git"
},
"license": "MIT",
"author": "Sefinek <contact@sefinek.net> (https://sefinek.net)",
"main": "src/index.js",
"typings": "src/index.d.ts",
"scripts": {
"build": "webpack --config webpack.config.js",
"test": "jest",
"up": "ncu -u && npm install && npm update && npm audit fix"
},
"devDependencies": {
"@eslint/js": "^9.9.1",
"globals": "^15.9.0",
"jest": "^29.7.0",
"webpack": "^5.94.0",
"webpack-cli": "^5.1.4"
}
}