-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.16 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
{
"name": "check-mask-inputs",
"version": "1.0.3",
"description": "Check Mask Inputs It is a library for validating and formatting numeric input data some pre-made formats and providing a customized format.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc --declaration",
"dev": "nodemon --watch . --exec \"ts-node app/example.ts\" -e ts",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/JonhnyDev/check-mask-inputs.git"
},
"keywords": [
"mask",
"cpf",
"cep",
"check",
"isvalid",
"cnpj",
"phone",
"birth",
"react",
"nodeJS",
"maskinputs"
],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/JonhnyDev/check-mask-inputs/issues"
},
"homepage": "https://github.com/JonhnyDev/check-mask-inputs#readme",
"devDependencies": {
"@types/express": "^4.17.17",
"@types/jest": "^29.5.1",
"@types/node": "^18.15.12",
"jest": "^29.5.0",
"nodemon": "^2.0.22",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"dependencies": {
"cep-promise": "^4.4.0"
}
}