-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
28 lines (28 loc) · 932 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
{
"name": "supertest-mocha-chai-javascript",
"version": "1.0.0",
"description": "This is a sample API Test Automation framework designed using SuperTest, Mocha, Chai, and FakerJS. And in this framework we will see some basic working examples for learning.",
"main": "index.js",
"scripts": {
"clean": "rimraf ./mochawesome-report",
"test": "npm run clean && mocha ./test-reqres-api --reporter spec --reporter mochawesome --timeout 5000",
"test-fakerest": "npm run clean && mocha ./test-fakerest-api --reporter spec --reporter mochawesome --timeout 5000",
"test-conf": "mocha --config=.mocharc.json"
},
"keywords": [
"supertest",
"mocha",
"chai",
"mochawesome"
],
"author": "",
"license": "ISC",
"devDependencies": {
"@faker-js/faker": "^8.0.2",
"chai": "^4.3.7",
"mocha": "^10.2.0",
"mochawesome": "^7.1.3",
"rimraf": "^5.0.1",
"supertest": "^6.3.3"
}
}