-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
86 lines (86 loc) · 2.18 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
{
"name": "multiform-validator",
"version": "2.4.0",
"description": "Javascript library made to validate, several form fields, such as: email, images, phone, password, cpf etc.",
"main": "./dist/cjs/index.cjs",
"module": "./dist/esm/index.mjs",
"types": "./types/index.d.ts",
"exports": {
".": {
"import": "./dist/esm/index.mjs",
"require": "./dist/cjs/index.cjs",
"types": "./types/index.d.ts"
}
},
"scripts": {
"test": "jest --verbose",
"test:cov": "jest --coverage",
"test:complete": "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:browser": "webpack",
"build": "yarn build:types && yarn build:browser",
"lint": "eslint . --ext .ts",
"prettier": "prettier --write '**/*.{ts,js}'",
"pr-check": "yarn prettier && 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": "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": {
"@types/jest": "^29.5.14",
"@types/node": "^22.10.5",
"@typescript-eslint/eslint-plugin": "^8.19.1",
"@typescript-eslint/parser": "^8.19.1",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"jest": "^29.7.0",
"prettier": "^3.4.2",
"ts-jest": "^29.2.5",
"ts-loader": "^9.5.1",
"ts-node": "^10.9.2",
"typescript": "^5.7.2",
"webpack": "^5.97.1",
"webpack-cli": "^6.0.1"
},
"packageManager": "[email protected]"
}