-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
90 lines (90 loc) · 2.26 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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "node-sicredi",
"version": "1.0.4",
"description": "Uma biblioteca JavaScript para interagir com o WebService EcommResource, para gerenciamento de boletos, do banco Sicredi",
"main": "lib/index.js",
"scripts": {
"clear": "rimraf lib",
"build": "npm run clear && babel --out-dir lib src",
"build:watch": "npm run build -- --watch",
"lint": "standard",
"lint:fix": "standard --fix",
"test": "mocha tests/**/*.spec.js --require @babel/register --require @babel/polyfill",
"test:tdd": "mocha tests/**/*.spec.js --require @babel/register --require @babel/polyfill --watch",
"test:coverage": "nyc npm test -- --exit",
"coveralls": "npm run test:coverage && nyc report --reporter=text-lcov | coveralls"
},
"files": [
"lib"
],
"nyc": {
"functions": 80,
"lines": 80,
"check-coverage": true,
"reporter": [
"text",
"html"
],
"exclude": [
"tests/**",
"./node_modules/"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/murilosandiego/node-sicredi.git"
},
"keywords": [
"boleto",
"sicredi",
"node",
"promise"
],
"author": "Murilo Sandiego <[email protected]> (http://murilosandiego.com.br/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/murilosandiego/node-sicredi/issues"
},
"homepage": "https://github.com/murilosandiego/node-sicredi#readme",
"devDependencies": {
"@babel/cli": "^7.8.4",
"@babel/core": "^7.9.0",
"@babel/node": "^7.8.7",
"@babel/polyfill": "^7.8.7",
"@babel/preset-env": "^7.9.5",
"@babel/register": "^7.9.0",
"chai": "^4.2.0",
"chai-as-promised": "^7.1.1",
"chai-subset": "^1.6.0",
"coveralls": "^3.0.11",
"husky": "^1.3.1",
"mocha": "^7.1.1",
"nock": "^10.0.6",
"nyc": "^14.1.1",
"rimraf": "^2.7.1",
"sinon": "^7.5.0",
"sinon-chai": "^3.5.0",
"standard": "^12.0.1"
},
"standard": {
"ignore": [
"lib/"
],
"globals": [
"describe",
"context",
"it",
"beforeEach",
"afterEach"
]
},
"husky": {
"hooks": {
"pre-push": "npm run lint && npm run test:coverage"
}
},
"dependencies": {
"request": "^2.88.2",
"request-promise-native": "^1.0.8"
}
}