forked from hurbcom/challenge-bravo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 934 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
{
"name": "challenge-bravo",
"version": "1.0.0",
"description": "Construa uma API, que responda JSON, para conversão monetária. Ela deve ter uma moeda de lastro (USD) e fazer conversões entre diferentes moedas com cotações de verdade e atuais.",
"main": "server.js",
"scripts": {
"test": "mocha test/rate.test.js",
"stress-test": "artillery run test/stress-test.yml"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NandaSouza/challenge-bravo.git"
},
"author": "Fernanda Souza",
"license": "ISC",
"bugs": {
"url": "https://github.com/NandaSouza/challenge-bravo/issues"
},
"homepage": "https://github.com/NandaSouza/challenge-bravo#readme",
"dependencies": {
"axios": "^0.18.0",
"dotenv": "^6.1.0",
"express": "^4.16.4",
"http": "0.0.0"
},
"devDependencies": {
"artillery": "^1.6.0-26",
"mocha": "^5.2.0",
"supertest": "^3.3.0"
}
}