-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.37 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
{
"name": "block8-project-zoo-functions",
"version": "1.0.0",
"description": "Você já usa o GitHub diariamente para desenvolver os exercícios, certo? Agora, para desenvolver os projetos, você deverá seguir as instruções a seguir. Fique atento a cada passo, e se tiver qualquer dúvida, nos envie por _Slack_! #vqv 🚀",
"main": "index.js",
"directories": {
"test": "test"
},
"scripts": {
"test": "jest",
"test:coverage": "jest --coverage test/*",
"lint": "eslint --no-inline-config --no-error-on-unmatched-pattern -c .eslintrc.json . --ext .js"
},
"engines": {
"node": "16"
},
"jest": {
"coverageReporters": [
"text",
"html"
],
"collectCoverageFrom": [
"**/src/handlerElephants.js",
"**/src/getOpeningHours.js"
],
"testMatch": [
"**/test/**/*.test.js?(x)",
"**/evaluator/**/*.test.js?(x)"
],
"testTimeout": 30000
},
"repository": {
"type": "git",
"url": "git+https://github.com/betrybe/sd-03-block9-project-zoo-functions.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/betrybe/sd-03-block9-project-zoo-functions/issues"
},
"homepage": "https://github.com/betrybe/sd-03-block9-project-zoo-functions#readme",
"devDependencies": {
"eslint-config-trybe-fundamentals": "1.1.0",
"faker": "5.5.3",
"jest": "25.2.3"
}
}