-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (113 loc) · 2.32 KB
/
package.json
File metadata and controls
115 lines (113 loc) · 2.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
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
106
107
108
109
110
111
112
113
114
115
{
"name": "validation-br",
"description": "Brazilian personal documents validation - cpf, cnpj, titulo, pis/pasep, cnh, renavam, processos judiciais, protocolo federal, código de rastreamento dos correios",
"version": "1.6.4",
"main": "dist/index.js",
"types": "./dist/index.d.ts",
"files": [
"dist/*",
"package.json",
"package-lock.json",
"readme.md"
],
"author": "Cláudio Medeiros <klawdyo@gmail.com>",
"license": "MIT",
"scripts": {
"build": "tsc",
"prepublishOnly": "./publish.sh",
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --collectCoverageFrom=src/**/*.ts --coverage",
"format": "prettier --write \"./**/*.{js,ts,json}\""
},
"lint-staged": {
"*.{js,ts}": [
"prettier --write",
"eslint --cache --fix"
]
},
"devDependencies": {
"@types/jest": "^27.4.0",
"@types/node": "^14.14.2",
"jest": "^29.7.0",
"ts-jest": "^29.2.5",
"ts-node": "^9.0.0",
"typescript": "^5.6.2"
},
"repository": {
"url": "git+https://github.com/klawdyo/validation-br.git"
},
"bugs": {
"url": "https://github.com/klawdyo/validation-br/issues"
},
"homepage": "https://github.com/klawdyo/validation-br#readme",
"keywords": [
"validation-br",
"validation",
"personal documents",
"document",
"brazil",
"brasil",
"brazilian",
"brasileiro",
"cpf",
"cnpj",
"pis",
"pasep",
"cnh",
"titulo eleitor",
"eleitoral",
"titulo",
"renavam",
"processos",
"judiciais",
"judicial",
"justiça",
"protocolo",
"federal",
"fake",
"falso",
"mock",
"faker",
"mockup",
"mask",
"mascara",
"fake cpf",
"fake cnpj",
"fake cnh",
"fake pis",
"fake pasep",
"fake cadunico",
"fake renavam",
"fake titulo",
"fake titulo eleitor",
"fake titulo eleitoral",
"fake número processo",
"processo justiça",
"processo judicial",
"valida",
"validar",
"validação",
"valide",
"validate",
"format",
"formatar",
"formatador",
"formatter",
"nest",
"nestjs",
"yup",
"next",
"nextjs",
"typeorm",
"class-validator",
"vuelidate",
"vue",
"vue3",
"indicative",
"adonis",
"adonisjs",
"adonis4",
"adonisjs4"
]
}