-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 910 Bytes
/
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
{
"name": "validar-cpf",
"version": "3.1.1",
"description": "Validador de CPF",
"main": "index.js",
"scripts": {
"pretest": "biome check .",
"test": "node --test --experimental-test-coverage",
"prepare": "husky"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/guilhermehn/validar-cpf.git"
},
"files": [
"index.js",
"index.d.ts"
],
"keywords": [
"cpf",
"validar",
"validador"
],
"author": "Guilherme Nagatomo",
"license": "MIT",
"bugs": {
"url": "https://github.com/guilhermehn/validar-cpf/issues"
},
"homepage": "https://github.com/guilhermehn/validar-cpf",
"devDependencies": {
"@biomejs/biome": "^1.7.3",
"gerar-cpf": "^3.1.0",
"husky": "^9.0.11",
"lint-staged": "^15.2.5"
},
"lint-staged": {
"*": [
"biome check --no-errors-on-unmatched --files-ignore-unknown=true"
]
}
}