-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
87 lines (87 loc) · 2.15 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
81
82
83
84
85
86
87
{
"name": "cypress-xray-reporter",
"version": "2.0.1",
"description": "An XUnit Reporter for Mocha",
"main": "dist/index.js",
"engines": {
"node": "~12.16.1"
},
"scripts": {
"build": "tsc && yarn format",
"format": "npx prettier --config .prettierrc.yml \"**/*.{js,ts,json,md}\" --write",
"pretest": "rm -rf test/results.*.xml",
"test": "node_modules/.bin/mocha test --reporter=spec",
"tdd": "yarn test --watch"
},
"husky": {
"hooks": {
"pre-commit": "npx lint-staged"
}
},
"lint-staged": {
"**/*.{js,jsx,ts,tsx}": [
"npx eslint"
],
"**/*.{css,scss,js,jsx,ts,tsx,md}": [
"prettier --config .prettierrc.yml --write",
"git add"
]
},
"resolutions": {
"**/minimist": "^0.2.1"
},
"devDependencies": {
"@types/chai": "^4.2.7",
"@types/md5": "^2.1.33",
"@types/mkdirp": "~0.5.2",
"@types/mocha": "^5.2.7",
"@types/node": "^13.1.2",
"@types/xml": "^1.0.4",
"@types/xml-escape": "^1.1.0",
"@typescript-eslint/eslint-plugin": "^2.14.0",
"@typescript-eslint/parser": "^2.14.0",
"chai": "^4.2.0",
"chai-xml": "^0.3.0",
"debug": "^4.1.1",
"eslint": "^6.8.0",
"eslint-plugin-import": "^2.19.1",
"husky": "^3.1.0",
"lint-staged": "^8.2.1",
"mocha": "2.4.5",
"prettier": "^1.19.1",
"test-console": "^1.0.0",
"typescript": "^3.7.4",
"xml": "^1.0.0"
},
"dependencies": {
"fast-xml-parser": "^3.15.1",
"md5": "^2.1.0",
"mkdirp": "~0.5.1",
"strip-ansi": "^6.0.0",
"xml-escape": "^1.1.0"
},
"peerDependencies": {
"cypress": ">=3.0.0"
},
"repository": {
"type": "git",
"url": "git+https://github.com/MGMResorts/cypress-xray-reporter.git"
},
"keywords": [
"mocha",
"xunit",
"report",
"cypress",
"xray"
],
"author": "Julian Coy",
"license": "MIT",
"contributors": [
"Julian Coy <[email protected]> (https://github.com/julian-sf)",
"Patrick Assuied (https://github.com/passuied)"
],
"bugs": {
"url": "https://github.com/MGMResorts/cypress-xray-reporter/issues"
},
"homepage": "https://github.com/MGMResorts/cypress-xray-reporter#readme"
}