-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
25 lines (25 loc) · 893 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
{
"name": "rest-api-testing-framework",
"version": "1.0.0",
"license": "MIT",
"description": "Example of a Rest-API Framework Testing using Mocha, Chai and Supertest",
"author": "Gerardo Prieto",
"dependencies": {
"async": "^2.6.1",
"body-parser": "^1.17.1",
"chai": "^3.5.0",
"express": "^4.16.3",
"mocha": "^3.2.0",
"mocha-jenkins-reporter": "^0.3.7",
"supertest": "^3.0.0"
},
"scripts": {
"prestart": "npm install;",
"start": "JUNIT_REPORT_PATH=test-result/result.xml JUNIT_REPORT_STACK=1 mocha --timeout 20000 --colors --reporter mocha-jenkins-reporter || true",
"docker": "docker build -t gerardo-rest-api-supertest . && docker-compose up --build"
},
"repository": {
"type": "git",
"url": "git@github.com:sherar/rest-api-testing-framework.git"
}
}