-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
59 lines (59 loc) · 1.32 KB
/
package.json
File metadata and controls
59 lines (59 loc) · 1.32 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
{
"name": "@sefinek/email-validator",
"version": "2.0.0",
"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/sefinek/email-validator#readme",
"bugs": {
"url": "https://github.com/sefinek/email-validator/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/sefinek/email-validator.git"
},
"funding": {
"type": "individual",
"url": "https://sefinek.net/donate"
},
"license": "MIT",
"author": "Sefinek <contact@sefinek.net> (https://sefinek.net)",
"type": "commonjs",
"main": "src/index.js",
"types": "src/index.d.ts",
"directories": {
"example": "example.js",
"test": "test",
"src": "src"
},
"files": [
"src",
"dist",
"example.js",
"LICENSE",
"README.md"
],
"scripts": {
"build": "webpack --config webpack.config.js",
"lint": "eslint .",
"m": "ncu -u && npm install && npm update",
"test": "jest"
},
"devDependencies": {
"@eslint/js": "^9.36.0",
"globals": "^16.4.0",
"jest": "^30.1.3",
"webpack": "^5.101.3",
"webpack-cli": "^6.0.1"
}
}