-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathpackage.json
More file actions
36 lines (36 loc) · 859 Bytes
/
package.json
File metadata and controls
36 lines (36 loc) · 859 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
28
29
30
31
32
33
34
35
36
{
"name": "api-framework",
"version": "1.0.0",
"description": "qa-fintech study auto test API-framework",
"main": "index.js",
"scripts": {
"report": "allure generate ./allure-results -c && allure open",
"testALL": "mocha tests/**/*.ts",
"test": "mocha tests/demo_allure_test.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"mocha": {
"timeout": 10000,
"retries": 0,
"reporter": "allure-mocha",
"require": [
"ts-node/register"
]
},
"dependencies": {
"@types/node": "^16.3.2",
"@types/chai": "^4.2.19",
"@types/mocha": "^8.2.2",
"allure-commandline": "^2.13.8",
"allure-mocha": "^2.0.0-beta.9",
"axios": "^0.21.1",
"chai": "^4.3.4",
"mocha": "^9.0.2",
"prettier": "^2.3.2",
"ts-node": "^10.0.0",
"tslib": "^2.3.0",
"typescript": "^4.3.5"
}
}