forked from ytesl-epam/agent-js-nightwatch
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
60 lines (60 loc) · 1.48 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
{
"name": "@reportportal/agent-js-nightwatch",
"version": "5.0.2",
"description": "Agent for integration Nightwatch with ReportPortal.",
"main": "build/index.js",
"license": "Apache-2.0",
"author": "ReportPortal.io",
"repository": {
"type": "git",
"url": "https://github.com/reportportal/agent-js-nightwatch.git"
},
"scripts": {
"build": "npm run clean && tsc",
"clean": "rimraf ./build",
"lint": "eslint \"src/**/*.ts\"",
"lint:format": "npm run lint -- --fix",
"test": "jest",
"test:coverage": "jest --coverage"
},
"dependencies": {
"@reportportal/client-javascript": "^5.0.6",
"moment": "^2.22.1",
"node-ipc": "9.1.1"
},
"devDependencies": {
"@types/jest": "^25.2.1",
"@types/node-ipc": "9.1.2",
"@typescript-eslint/eslint-plugin": "^2.21.0",
"@typescript-eslint/parser": "^2.21.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-airbnb-typescript": "^7.0.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.1.2",
"jest": "^25.3.0",
"prettier": "^1.19.1",
"rimraf": "^3.0.2",
"ts-jest": "^25.3.1",
"typescript": "^3.8.3"
},
"directories": {
"src": "./src"
},
"files": [
"/build"
],
"engines": {
"node": ">= 8.0.x"
},
"keywords": [
"epam",
"reports",
"portal",
"nightwatch",
"reporters",
"reportportal"
]
}