-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
59 lines (59 loc) · 1.26 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
{
"name": "class-validator-cpf",
"version": "1.1.1",
"description": "Um decorator customizado para validar CPF usando o class-validator",
"main": "dist/index.js",
"types": "types/index.d.ts",
"files": [
"dist/",
"types/"
],
"scripts": {
"build": "rm -rf dist && rm -rf types && tsc --project tsconfig.build.json",
"test": "jest",
"test:watch": "jest --watch"
},
"author": "Cauã Soares",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/ocsoares/class-validator-cpf.git"
},
"keywords": [
"class-validator",
"class-validator-CPF",
"cpf",
"validation",
"validator",
"regex",
"regular expression",
"isCPF",
"NestJS"
],
"dependencies": {
"class-validator": "^0.14.0",
"cpf-cnpj-validator": "^1.0.3"
},
"devDependencies": {
"@types/jest": "^29.4.0",
"jest": "^29.4.3",
"ts-jest": "^29.0.5",
"typescript": "^4.9.5"
},
"jest": {
"moduleFileExtensions": [
"js",
"ts"
],
"rootDir": "test",
"testRegex": ".*\\.spec\\.ts$",
"transform": {
"^.+\\.(t|j)s$": "ts-jest"
},
"collectCoverageFrom": [
"**/*.(t|j)s"
],
"coverageDirectory": "../coverage",
"testEnvironment": "node"
}
}