-
Notifications
You must be signed in to change notification settings - Fork 51
/
package.json
80 lines (80 loc) · 1.95 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
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
{
"name": "@reportportal/client-javascript",
"version": "5.3.0",
"description": "ReportPortal client for Node.js",
"author": "ReportPortal.io",
"scripts": {
"build": "npm run clean && tsc",
"clean": "rimraf ./build",
"lint": "eslint ./statistics/**/* ./lib/**/* ./__tests__/**/*",
"format": "npm run lint -- --fix",
"test": "jest",
"test:coverage": "jest --coverage"
},
"directories": {
"lib": "./lib"
},
"files": [
"/lib",
"/statistics",
"/VERSION"
],
"main": "./lib/report-portal-client",
"engines": {
"node": ">=14.x"
},
"dependencies": {
"axios": "^1.7.7",
"axios-retry": "^4.1.0",
"glob": "^8.1.0",
"ini": "^2.0.0",
"uniqid": "^5.4.0",
"uuid": "^9.0.1",
"microtime": "^3.1.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": "[email protected]"
},
{
"name": "Alexey Krylov",
"email": "[email protected]"
}
],
"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"
]
}