forked from reportportal/client-javascript
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
50 lines (50 loc) · 1.19 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
{
"name": "reportportal-client",
"version": "5.2.3",
"description": "ReportPortal client for node.js",
"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"
},
"directories": {
"lib": "./lib"
},
"main": "./lib/report-portal-client",
"engines": {
"node": ">= 8.0.x"
},
"dependencies": {
"axios": "^0.18.1",
"axios-retry": "^3.1.2",
"glob": "^7.1.4",
"uniqid": "^5.0.3"
},
"license": "GPL-3.0",
"scripts": {
"lint": "eslint . --quiet",
"test": "nyc ./node_modules/jasmine/bin/jasmine.js",
"coverage": "nyc report --reporter=text-lcov > coverage.lcov"
},
"devDependencies": {
"codecov": "3.5.0",
"eslint": "5.16.0",
"eslint-config-airbnb-base": "^13.1.0",
"eslint-plugin-import": "^2.17.0",
"eslint-plugin-node": "^8.0.1",
"jasmine": "^2.6.0",
"lodash": "^4.17.11",
"nock": "^10.0.6",
"nyc": "^14.1.1"
}
}