-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
60 lines (60 loc) · 1.29 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
{
"name": "api-ml",
"version": "0.0.1",
"description": "Buscando dados na API Pública do Mercado Livre",
"main": "index.js",
"scripts": {
"start": "nodemon -r dotenv/config --exec babel-node src",
"test": "jest --coverage --detectOpenHandles",
"doc": "jsdoc src --destination ./docs"
},
"author": "",
"license": "ISC",
"dependencies": {
"@babel/core": "^7.9.6",
"@babel/node": "^7.8.7",
"@babel/plugin-transform-runtime": "^7.9.6",
"@babel/preset-env": "^7.9.6",
"axios": "^0.19.2",
"dotenv": "^8.2.0",
"jsdoc": "^3.6.4",
"restify": "^8.5.1",
"winston": "^3.2.1"
},
"devDependencies": {
"jest": "^26.0.1",
"nodemon": "^2.0.3"
},
"jest": {
"automock": false,
"verbose": true,
"bail": true,
"collectCoverage": true,
"collectCoverageFrom": [
"<rootDir>/src/**/*.js",
"!<rootDir>/src/index.js"
],
"coverageReporters": [
"json",
"html"
],
"coverageThreshold": {
"global": {
"branches": 50,
"functions": 70,
"lines": 70,
"statements": 70
}
},
"transform": {
"^.+\\.js$": "babel-jest"
},
"moduleFileExtensions": [
"js"
],
"testPathIgnorePatterns": [
"/node_modules/",
"/coverage/"
]
}
}