forked from carvalhoviniciusluiz/cpf-cnpj-validator
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
63 lines (63 loc) · 1.52 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
60
61
62
63
{
"name": "cpf-cnpj-validator",
"version": "1.1.0",
"description": "Valida e formata strings de CPF ou CNPJ.",
"author": "Carvalho, Vinicius Luiz <[email protected]>",
"license": "MIT",
"main": "dist/cpf-cnpj-validator.cjs.js",
"types": "types/index.d.ts",
"module": "dist/cpf-cnpj-validator.es.js",
"scripts": {
"build": "bili src/index.ts",
"test": "ts-node jest.startup.ts --detectOpenHandles --forceExit --no-cache",
"pretest": "npm run build",
"prepublishOnly": "npm run test"
},
"files": [
"dist/",
"types/"
],
"jest": {
"testEnvironment": "node",
"transform": {
"^.+\\.tsx?$": "ts-jest"
},
"testRegex": "(/__tests__/.*|(\\.|/)(test|spec))\\.(jsx?|tsx?)$",
"moduleFileExtensions": [
"ts",
"tsx",
"js",
"jsx",
"json",
"node"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/carvalhoviniciusluiz/cpf-cnpj-validator.git"
},
"bugs": {
"url": "https://github.com/carvalhoviniciusluiz/cpf-cnpj-validator/issues"
},
"homepage": "https://github.com/carvalhoviniciusluiz/cpf-cnpj-validator#readme",
"devDependencies": {
"@types/jest": "^23.3.14",
"bili": "^3.4.2",
"jest": "^23.6.0",
"jest-cli": "^23.6.0",
"rollup-plugin-typescript2": "^0.29.0",
"ts-jest": "^23.10.5",
"ts-node": "^7.0.1",
"typescript": "^3.5.3"
},
"peerDependencies": {
"joi": "^17.4.2"
},
"keywords": [
"node",
"joi",
"cpf",
"cnpj",
"validator"
]
}