-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
52 lines (52 loc) · 1.24 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
{
"name": "reportportal-js-client",
"version": "2.2.1",
"description": "ReportPortal client for NodeJS",
"contributors": [
{
"name": "Artsiom Tkachou",
"email": "[email protected]"
},
{
"name": "Alexey Krylov",
"email": "[email protected]"
},
{
"name": "Boris Osipov",
"email": "[email protected]"
}
],
"homepage": "https://github.com/BorisOsipov/reportportal-js-client",
"repository": {
"type": "git",
"url": "https://github.com/BorisOsipov/reportportal-js-client.git"
},
"directories": {
"lib": "./lib"
},
"main": "./lib/report-portal-client",
"engines": {
"node": ">= 12.0.x"
},
"dependencies": {
"axios": "^0.23.0",
"axios-retry": "^3.2.3",
"uniqid": "^5.4.0"
},
"license": "Apache-2.0",
"scripts": {
"lint": "eslint . --quiet",
"test": "nyc ./node_modules/jasmine/bin/jasmine.js",
"coverage": "nyc report --reporter=text-lcov > coverage.lcov"
},
"devDependencies": {
"eslint": "^8.31.0",
"eslint-config-airbnb-base": "^15.0.0",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"jasmine": "^4.5.0",
"lodash": "^4.17.21",
"nock": "^13.2.9",
"nyc": "^15.1.0"
}
}