forked from WellsSA/jsexpert-exercicio01-pokeapi-solution
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
35 lines (35 loc) · 853 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": "desafio01-pokeapi",
"version": "1.1.0",
"description": "An API that gives you a random pokemon starter team",
"main": "src/index.js",
"scripts": {
"start": "node src/index.js",
"test:all": "NODE_ENV=test && npx mocha -w --parallel ./test/**/*.test.js",
"test": "NODE_ENV=test && npx nyc --no-cache npx mocha -w --parallel",
"test:cov": "NODE_ENV=test && npx nyc --no-cache npx mocha --parallel ./test/**/*.test.js"
},
"keywords": [
"Tests",
"Mocha",
"Chai",
"Pokemon",
"Code",
"Coverage",
"NodeJS",
"e2e",
"unit"
],
"author": "Thales Silva Morato (ThaSMorato)",
"license": "MIT",
"engines": {
"node": "^18.13.0"
},
"devDependencies": {
"chai": "^4.3.7",
"mocha": "^10.2.0",
"nyc": "^15.1.0",
"sinon": "^15.0.1",
"supertest": "^6.3.3"
}
}