-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
55 lines (55 loc) · 1.44 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
{
"name": "br-doc-validator",
"version": "3.0.0",
"type": "module",
"description": "Helper library to validate Brazilians documents as CPF and CNPJ.",
"main": "bin/multidocument_validator.js",
"types": "bin/multidocument_validator.d.ts",
"repository": "https://github.com/egermano/brazilian-multidocument-validator",
"bugs": {
"url": "https://github.com/egermano/brazilian-multidocument-validator/issues"
},
"homepage": "https://github.com/egermano/brazilian-multidocument-validator#readme",
"author": "Bruno Germano <bruno.germano@gmail.com>",
"keywords": [
"Brasil",
"Validator",
"Documents",
"CPF",
"CNPJ"
],
"license": "Apache-2.0",
"engines": {
"node": ">=18"
},
"scripts": {
"build": "tsc -p ./tsconfig.json --declaration",
"lint": "eslint",
"test": "jest",
"start": "tsc -w -p ./tsconfig.json",
"prepare": "npm run build",
"prepublishOnly": "npm run lint && npm test",
"preversion": "npm run lint"
},
"devDependencies": {
"@eslint/js": "^9.14.0",
"@jest/globals": "^29.3.1",
"@types/jest": "^29.2.5",
"@types/node": "^22.7.8",
"eslint": "^9.14.0",
"globals": "^15.12.0",
"jest": "^29.3.1",
"ts-jest": "^29.0.3",
"typescript": "^5.6.3",
"typescript-eslint": "^8.13.0"
},
"peerDependencies": {
"typescript": "^5.6.3"
},
"files": [
"bin/**/*"
],
"publishConfig": {
"registry": "https://registry.npmjs.org/"
}
}