-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.01 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
{
"name": "dadosjusbr-parser",
"version": "1.0.0",
"description": "A http API that parses judges payments .xls or .xlsx spreadsheets into a nice csv",
"main": "index.js",
"scripts": {
"start": "node index.js",
"test": "jest",
"coveralls": "jest --collectCoverage && cat ./coverage/lcov.info | coveralls"
},
"repository": {
"type": "git",
"url": "git+https://github.com/dadosjusbr/parser.git"
},
"keywords": [
"dadosjusbr"
],
"author": "dadosjusbr.online",
"license": "MIT",
"bugs": {
"url": "https://github.com/dadosjusbr/parser/issues"
},
"homepage": "https://github.com/dadosjusbr/parser#readme",
"dependencies": {
"body-parser": "^1.19.0",
"express": "^4.16.4",
"express-pino-logger": "^4.0.0",
"http-status": "^1.3.1",
"jsonexport": "^2.4.1",
"pino-pretty": "^3.1.0",
"xlsx": "^0.14.1"
},
"devDependencies": {
"coveralls": "^3.0.2",
"jest": "^24.9.0",
"nock": "^10.0.5",
"sinon": "^7.2.2",
"supertest": "^3.3.0"
}
}