forked from Jcarlosjunior/node-boleto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 946 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": "node-boleto",
"version": "2.0.2",
"description": "Boleto generator in Node.js",
"main": "index.js",
"scripts": {
"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"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-datetime": "^1.4.1",
"chai-string": "^1.3.0",
"chai-subset": "^1.4.0",
"eslint": "^3.12.2",
"eslint-config-standard": "^6.2.1",
"eslint-plugin-promise": "^3.3.0",
"eslint-plugin-standard": "^2.0.1",
"mocha": "^3.2.0",
"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"
}