-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·27 lines (27 loc) · 844 Bytes
/
package.json
File metadata and controls
executable file
·27 lines (27 loc) · 844 Bytes
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
{
"name": "apiTesting-mocha-boilerplate",
"version": "1.0.0",
"description": "apiTesting boilerplate with supertest and mocha",
"scripts": {
"test.api": "mocha 'test/specs/User/User.js' --timeout 100000 --reporter mochawesome",
"report": "marge --inline=true mochawesome-report/mochawesome.json",
"apiserver": "json-server --watch 'test/testData/userdata.js'"
},
"author": "Aravind Reddy <aravind.1si13cs043@gmail.com>",
"license": "ISC",
"dependencies": {
"ajv": "^6.10.0",
"dotenv": "^7.0.0",
"faker": "^4.1.0",
"json-server": "^0.14.2",
"mocha": "^6.1.3",
"mochawesome": "^3.1.1",
"mochawesome-report-generator": "^3.1.5",
"should": "^13.2.3",
"supertest": "^4.0.2"
},
"devDependencies": {
"@wdio/allure-reporter": "^5.7.11",
"babel-preset-es2015": "^6.24.1"
}
}