-
Notifications
You must be signed in to change notification settings - Fork 69
/
package.json
executable file
·59 lines (59 loc) · 1.32 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
{
"name": "gerar-boletos",
"version": "1.4.5",
"description": "Gerar boletos para vários bancos",
"main": "lib/index.js",
"directories": {
"example": "examples",
"lib": "lib",
"test": "tests"
},
"scripts": {
"test": "nodeunit ./tests/*test.js && nodeunit ./tests/boleto/bancos/*test.js && nodeunit ./tests/boleto/*test.js",
"lint": "eslint .",
"gerarBradesco": "node ./examples/gerar-boleto-bradesco.js",
"gerarCecred": "node ./examples/gerar-boleto-cecred.js",
"gerarBrasil": "node ./examples/gerar-boleto-BancoDoBrasil.js"
},
"keywords": [
"gerador",
"boleto",
"boletos",
"bancario",
"banco",
"cecred",
"sicredi",
"ailos",
"viacredi",
"bradesco",
"brasil",
"itau",
"caixa",
"economica",
"federal",
"santander",
"sicoob"
],
"author": {
"name": "Rômulo Cabral Santos",
"email": "[email protected]",
"homepage": "https://romulosanttos.github.io/"
},
"license": "ISC",
"engines": {
"node": ">=10.0.0"
},
"dependencies": {
"base64-stream": "^1.0.0",
"moment": "^2.24.0",
"pdfkit": "0.10.0"
},
"devDependencies": {
"eslint": "^6.5.1",
"nodeunit": "0.11.3"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Romulosanttos/gerar-boletos.git"
}
}