forked from test-results-reporter/parser
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.03 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
{
"name": "test-results-parser",
"version": "0.1.15",
"description": "Parse test results from JUnit, TestNG, xUnit, cucumber and many more",
"main": "src/index.js",
"types": "./src/index.d.ts",
"scripts": {
"test": "c8 mocha tests"
},
"repository": {
"type": "git",
"url": "git+https://github.com/test-results-reporter/parser.git"
},
"keywords": [
"JUnit",
"xUnit",
"TestNG",
"parser",
"test",
"testing",
"results",
"result",
"automation",
"mocha",
"cucumber",
"nUnit",
"testbeats"
],
"author": "Anudeep <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/test-results-reporter/parser/issues"
},
"homepage": "https://github.com/test-results-reporter/parser#readme",
"dependencies": {
"fast-xml-parser": "^4.3.2",
"globrex": "^0.1.2",
"html-escaper": "^3.0.3",
"totalist": "^3.0.1"
},
"devDependencies": {
"c8": "^8.0.1",
"mocha": "^10.2.0"
},
"mocha": {
"spec": "tests/**/*.spec.js"
}
}