-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
35 lines (35 loc) · 878 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
{
"name": "dochelper",
"version": "1.1.1",
"description": "Biblioteca para validar, gerar e formatar CPF, CNPJ e outras identificações.",
"main": "index.js",
"scripts": {
"test": "jest",
"build": "rm -rf dist && tsc && cp package.json README.md LICENSE dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/ArturMiguel/doc-helper.git"
},
"types": "./index.d.ts",
"keywords": [
"CPF",
"CNPJ",
"gerador",
"validador",
"formatador"
],
"author": "https://github.com/ArturMiguel",
"license": "MIT",
"bugs": {
"url": "https://github.com/ArturMiguel/doc-helper/issues"
},
"homepage": "https://github.com/ArturMiguel/doc-helper#readme",
"devDependencies": {
"@types/jest": "^26.0.19",
"jest": "^25.5.4",
"ts-jest": "^26.4.4",
"typescript": "^4.1.3"
},
"dependencies": {}
}