forked from Jcarlosjunior/node-boleto
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.16 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.16 KB
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
{
"name": "node-boleto",
"version": "2.2.0",
"description": "Boleto generator in Node.js",
"main": "index.js",
"scripts": {
"build": "npm run clean && copyfiles -u 1 lib/**/*.json dist",
"clean": "rimraf dist",
"tsc": "tsc",
"lint": "eslint .",
"test": "mocha \"./test/unit/**/*.spec.js\" && mocha \"./test/integration/**/*.spec.js\" && mocha \"./test/e2e/**/*.spec.js\""
},
"repository": {
"type": "git",
"url": "https://github.com/pagarme/node-boleto"
},
"dependencies": {
"ejs": "2.5.5",
"html-pdf-node": "^1.0.7"
},
"devDependencies": {
"chai": "^4.2.0",
"chai-datetime": "^1.4.1",
"chai-string": "^1.3.0",
"chai-subset": "^1.4.0",
"copyfiles": "^2.1.0",
"eslint": "^3.12.2",
"eslint-config-standard": "^6.2.1",
"eslint-plugin-promise": "^3.3.0",
"eslint-plugin-standard": "^2.0.1",
"mocha": "^8.2.1",
"moment": "https://github.com/pagarme/moment/archive/0.0.5.tar.gz",
"ramda": "^0.23.0"
},
"author": "Pedro Franceschi",
"license": "MIT",
"bugs": {
"url": "https://github.com/pagarme/node-boleto/issues"
},
"homepage": "https://github.com/pagarme/node-boleto"
}