-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
105 lines (105 loc) · 2.52 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
{
"name": "multiform-validator",
"version": "2.6.1",
"description": "Javascript library made to validate, several form fields, such as: email, images, phone, password, cpf etc.",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./types/index.d.ts",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.js",
"types": "./types/index.d.ts"
}
},
"files": [
"dist",
"types"
],
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/gabriel-logan"
},
{
"type": "buy-me-a-coffee",
"url": "https://buymeacoffee.com/gabriellogan"
}
],
"scripts": {
"test": "jest --verbose",
"test:cov": "jest --coverage",
"test:full": "jest --verbose --coverage",
"test:file": "jest tests/src/isDecimal.test --watch",
"test:watch": "jest --watch",
"build:types": "tsc -p tsconfig.types.json",
"build:src": "npx tsup index.ts --format esm --legacy-output",
"build:dist": "webpack --progress",
"build:clean": "rm -rf dist && rm -rf types",
"build": "yarn build:clean && yarn build:types && yarn build:dist",
"lint": "eslint src/**/*.ts tests/**/*.ts",
"lint:fix": "yarn lint --fix",
"format": "prettier --write '**/*.{ts,js}'",
"pr-check": "yarn format && yarn lint && yarn build && yarn test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Multiform-Validator/typescript-javascript.git"
},
"keywords": [
"validator",
"multiform",
"validação",
"email-validator",
"multiform-validator",
"javascript",
"npm",
"security",
"safe",
"pentest",
"security-tools",
"Validator",
"validate",
"magic number",
"magic number validator",
"magic numbers",
"cpf",
"cnpj",
"email validator",
"password",
"email",
"isEmail",
"image"
],
"author": {
"name": "Gabriel Logan",
"url": "https://github.com/gabriel-logan"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/Multiform-Validator/typescript-javascript/issues"
},
"homepage": "https://multiformvalidator.netlify.app",
"contributors": [
"Gabriel Logan",
"Breno A"
],
"devDependencies": {
"@eslint/js": "^9.20.0",
"@types/jest": "^29.5.14",
"@types/node": "^22.13.4",
"eslint": "^9.20.1",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-prettier": "^5.2.3",
"jest": "^29.7.0",
"prettier": "^3.5.1",
"ts-jest": "^29.2.5",
"ts-loader": "^9.5.2",
"ts-node": "^10.9.2",
"typescript": "^5.7.3",
"typescript-eslint": "^8.24.0",
"webpack": "^5.98.0",
"webpack-cli": "^6.0.1"
},
"packageManager": "[email protected]"
}