forked from reportportal/agent-js-mocha
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.32 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
{
"name": "rp-mocha-reporter",
"version": "2.0.5",
"description": "mocha reporter for EPAM Report Portal",
"main": "index.js",
"scripts": {
"example": "node ./example/main.js",
"eslint": "eslint \"./**/*.js\"",
"format": "npm run eslint -- --fix",
"test": "jest",
"test:coverage": "jest --coverage"
},
"author": "Vitalii Fedosieiev",
"contributors": [
{
"name": "Alexander Galichenko",
"email": "[email protected]"
}
],
"license": "Apache 2.0",
"dependencies": {
"mocha": "^7.0.1",
"reportportal-client": "^5.5.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/reportportal/agent-js-mocha"
},
"devDependencies": {
"chai": "3.5.0",
"eslint": "^6.8.0",
"eslint-config-airbnb-base": "^14.0.0",
"eslint-config-prettier": "^6.10.0",
"eslint-plugin-import": "^2.20.0",
"eslint-plugin-jest": "^23.8.0",
"eslint-plugin-mocha": "^6.2.2",
"eslint-plugin-node": "^11.0.0",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-promise": "^4.2.1",
"jest": "^25.1.0",
"prettier": "^1.19.1"
},
"keywords": [
"epam",
"reports",
"portal",
"mocha",
"reporters",
"reportportal"
],
"jest": {
"testPathIgnorePatterns": ["<rootDir>/example/", "<rootDir>/node_modules/"]
}
}