-
Notifications
You must be signed in to change notification settings - Fork 51
Expand file tree
/
Copy pathpackage.json
More file actions
84 lines (84 loc) · 2.05 KB
/
package.json
File metadata and controls
84 lines (84 loc) · 2.05 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "@reportportal/client-javascript",
"version": "5.5.10",
"description": "ReportPortal client for Node.js",
"author": "ReportPortal.io",
"scripts": {
"build": "npm run clean && tsc",
"clean": "rimraf ./build",
"lint": "eslint ./statistics/**/* ./lib/**/*",
"format": "npm run lint -- --fix",
"test": "jest",
"test:coverage": "jest --coverage"
},
"directories": {
"lib": "./lib"
},
"files": [
"/lib",
"/statistics",
"/VERSION",
"index.d.ts"
],
"main": "./lib/report-portal-client",
"types": "./index.d.ts",
"engines": {
"node": ">=14.x"
},
"dependencies": {
"axios": "^1.12.2",
"axios-retry": "^4.5.0",
"glob": "^13.0.1",
"http-proxy-agent": "^7.0.2",
"https-proxy-agent": "^7.0.6",
"ini": "^2.0.0",
"proxy-from-env": "^1.1.0",
"uniqid": "^5.4.0",
"uuid": "^9.0.1"
},
"license": "Apache-2.0",
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^18.19.8",
"@typescript-eslint/eslint-plugin": "5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"eslint": "^7.32.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-config-airbnb-typescript": "^17.1.0",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.2.1",
"jest": "^29.7.0",
"lodash": "^4.17.21",
"nock": "^13.5.0",
"prettier": "^2.8.8",
"rimraf": "^3.0.2",
"ts-jest": "^29.1.5",
"ts-node": "^10.9.2",
"typescript": "^4.9.5"
},
"contributors": [
{
"name": "Artsiom Tkachou",
"email": "artsiom_tkachou@epam.com"
},
{
"name": "Alexey Krylov",
"email": "lexecon117@gmail.com"
}
],
"homepage": "https://github.com/reportportal/client-javascript",
"repository": {
"type": "git",
"url": "https://github.com/reportportal/client-javascript.git"
},
"bugs": {
"url": "https://github.com/reportportal/client-javascript/issues"
},
"keywords": [
"epam",
"reportportal",
"rp"
]
}