forked from Theryston/4devs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
80 lines (80 loc) · 1.84 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "4devs",
"version": "1.2.0",
"description": "Validate and generate various data 🚀✅",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/Theryston/4devs.git",
"author": "Theryston Santos <funktodo2@gmail.com>",
"license": "MIT",
"private": false,
"files": [
"dist/",
"package.json",
"README.md"
],
"dependencies": {
"axios": "^0.26.1",
"form-data": "^4.0.0"
},
"devDependencies": {
"@commitlint/cli": "^16.2.3",
"@commitlint/config-conventional": "^16.2.1",
"@semantic-release/github": "^8.0.2",
"@semantic-release/npm": "^9.0.1",
"@semantic-release/release-notes-generator": "^10.0.3",
"@types/jest": "^27.4.1",
"@types/puppeteer": "^5.4.5",
"@types/superagent": "^4.1.15",
"@typescript-eslint/eslint-plugin": "^5.16.0",
"commitizen": "^4.2.4",
"cz-conventional-changelog": "3.3.0",
"eslint": "7.32.0",
"eslint-config-airbnb-base": "^15.0.0",
"git-cz": "^4.8.0",
"husky": "^7.0.4",
"jest": "^27.5.1",
"pinst": "^3.0.0",
"semantic-release": "^19.0.2",
"ts-jest": "^27.1.3",
"ts-node": "^10.7.0",
"tsconfig-paths": "^3.14.0",
"typescript": "^4.6.2"
},
"scripts": {
"test": "jest",
"build": "tsc",
"release": "yarn semantic-release",
"example": "node examples/index.js"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"keywords": [
"validate",
"validar",
"generate",
"gerar",
"CPF",
"document",
"documento",
"Certidões de Nascimento",
"birth certificates",
"CNH",
"Bank account",
"Currículo",
"Resume",
"PIS/PASEP",
"Veículos",
"vehicles",
"CNPJ",
"CEP",
"RG",
"Cartão de Crédito",
"Credit card",
"Senha",
"Password"
]
}