-
-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
49 lines (49 loc) · 1.31 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "codeceptjs-rest-demo",
"version": "1.0.0",
"description": "CodeceptJS demo project with REST helper",
"main": "dist/stepObjects/index.js",
"scripts": {
"def": "codeceptjs def",
"lint": "eslint . --fix",
"test": "codeceptjs run",
"api-load-test": "k6 run load-tests/scenario-1.js",
"compile": "tsc",
"allure-reports-generate": "allure generate ./output -o ./output/allure --clean",
"allure-reports-patch": "allure-patch ./output/allure",
"processData": "npx ts-node prometheus/processData.ts",
"sendData": "node prometheus/sendData.js"
},
"keywords": [
"codeceptjs",
"rest"
],
"author": "kobenguyent",
"license": "ISC",
"devDependencies": {
"@codeceptjs/allure-legacy": "^1.0.2",
"@types/node": "^14.18.26",
"codeceptjs": "3.5.3",
"eslint": "^6.5.1",
"eslint-plugin-codeceptjs": "^1.1.0",
"faker": "^4.1.0",
"rosie": "^2.1.0",
"ts-node": "^8.10.2",
"typescript": "^4.9.5"
},
"dependencies": {
"allure-commandline": "^2.13.0",
"allure-patch": "^1.0.3",
"codeceptjs-expect": "^1.0.0",
"form-data": "^3.0.0",
"ua-parser-js": "^1.0.35"
},
"files": [
"dist/stepObjects/*",
"README.md"
],
"repository": {
"type": "git",
"url": "https://github.com/kobenguyent/codeceptjs-rest-demo.git"
}
}