forked from Jcarlosjunior/node-boleto
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
39 lines (39 loc) · 1.15 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
{
"name": "node-boleto",
"version": "2.2.1",
"description": "Boleto generator in Node.js",
"main": "index.js",
"scripts": {
"lint": "eslint .",
"test": "nyc --silent --all mocha \"./test/unit/**/*.spec.js\" && nyc --silent --all mocha \"./test/integration/**/*.spec.js\" && nyc --silent --all mocha \"./test/e2e/**/*.spec.js\"",
"cover-report": "nyc report --reporter=html --reporter=lcov --report-dir=./coverage"
},
"repository": {
"type": "git",
"url": "https://github.com/pagarme/node-boleto"
},
"dependencies": {
"ejs": "3.1.8"
},
"devDependencies": {
"chai": "^4.3.6",
"chai-datetime": "^1.8.0",
"chai-string": "^1.5.0",
"chai-subset": "^1.6.0",
"dayjs": "^1.11.4",
"eslint": "^8.20.0",
"eslint-config-standard": "^17.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-n": "^15.2.4",
"eslint-plugin-promise": "^6.0.0",
"mocha": "^10.0.0",
"nyc": "15.1.0",
"ramda": "^0.28.0"
},
"author": "Pedro Franceschi",
"license": "MIT",
"bugs": {
"url": "https://github.com/pagarme/node-boleto/issues"
},
"homepage": "https://github.com/pagarme/node-boleto"
}