forked from ew-academy/jsexpert-exercicio01-pokeapi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 785 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
{
"name": "desafio01-pokeapi",
"version": "1.0.0",
"description": "An API that gives you a random pokemon starter team",
"main": "src/api.js",
"scripts": {
"start": "node src/api.js",
"test:dev": "NODE_ENV=test npx mocha -w --parallel **/**/*.test.js",
"test": "NODE_ENV=test npx mocha --parallel **/**/*.test.js",
"test:cov": "NODE_ENV=test npx nyc npx mocha --exit --parallel **/**/*.test.js"
},
"keywords": [
"Tests",
"Mocha",
"Chai",
"Pokemon",
"Code",
"Coverage",
"NodeJS",
"e2e",
"unit"
],
"author": "Wellington S. Almeida (WellsSA)",
"license": "MIT",
"devDependencies": {
"chai": "4",
"chai-as-promised": "^7.1.1",
"mocha": "8",
"sinon": "9",
"supertest": "6",
"nyc": "15"
}
}