-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpackage.json
More file actions
72 lines (72 loc) · 1.8 KB
/
Copy pathpackage.json
File metadata and controls
72 lines (72 loc) · 1.8 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
{
"name": "validations-br",
"version": "1.7.0",
"packageManager": "pnpm@11.9.0",
"description": "Validators for Brazilian documents (CPF, CNPJ, CNH, PIS, CEP, IE, phone, UF, email)",
"main": "lib/index.cjs",
"module": "lib/index.mjs",
"types": "lib/index.d.cts",
"exports": {
".": {
"import": {
"types": "./lib/index.d.mts",
"default": "./lib/index.mjs"
},
"require": {
"types": "./lib/index.d.cts",
"default": "./lib/index.cjs"
}
},
"./package.json": "./package.json"
},
"repository": {
"type": "git",
"url": "git+https://github.com/reactivando/validations-br.git"
},
"homepage": "https://github.com/reactivando/validations-br#readme",
"bugs": {
"url": "https://github.com/reactivando/validations-br/issues"
},
"author": "Reactivando <reactivando2@gmail.com>",
"keywords": [
"BR",
"Brazil",
"Validator"
],
"license": "MIT",
"type": "module",
"sideEffects": false,
"engines": {
"node": ">=18"
},
"publishConfig": {
"provenance": true
},
"files": [
"lib/**/*"
],
"scripts": {
"build": "tsdown",
"format": "ultracite fix ./src",
"lint": "ultracite check ./src",
"test": "vitest",
"coverage": "vitest run --coverage",
"test:e2e": "pnpm build && cd examples && pnpm install --ignore-workspace && pnpm start",
"release": "release-it",
"prepare": "lefthook install"
},
"devDependencies": {
"@biomejs/biome": "2.5.0",
"@release-it/conventional-changelog": "^11.0.1",
"@vitest/coverage-v8": "^4.1.9",
"esbuild": "^0.28.1",
"lefthook": "^2.1.9",
"release-it": "^20.2.0",
"release-it-pnpm": "^4.6.6",
"tsdown": "^0.22.3",
"typescript": "^6.0.3",
"ultracite": "^7.8.3",
"vite": "^8.0.16",
"vitest": "^4.1.9"
}
}