-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
86 lines (86 loc) · 2.08 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
{
"name": "faros-test-results-reporter",
"version": "0.1.0",
"description": "CLI for parsing & uploading test results (JUnit, TestNG, xUnit, CSucumber etc.) to Faros AI API",
"keywords": [
"airbyte",
"source",
"faros",
"JUnit",
"xUnit",
"TestNG",
"parser",
"test",
"testing",
"results",
"result",
"automation",
"mocha",
"cucumber"
],
"homepage": "https://www.faros.ai",
"author": "Faros AI, Inc.",
"license": "Apache-2.0",
"files": [
"lib/",
"resources/"
],
"engines": {
"node": ">=16"
},
"main": "./lib",
"scripts": {
"build": "tsc -p src",
"clean": "rm -rf lib node_modules out",
"fix": "prettier --write 'src/**/*.ts' 'test/**/*.ts' && npm run lint -- --fix",
"lint": "eslint 'src/**/*.ts' 'test/**/*.ts'",
"prepare": "npm run build",
"test": "jest --verbose --color",
"test-cov": "jest --coverage --verbose --color",
"watch": "tsc -b -w src test",
"postinstall": "patch-package"
},
"dependencies": {
"axios": "^1.7.4",
"commander": "^9.3.0",
"p-limit": "^3.1.0",
"patch-package": "^6.5.1",
"pino": "^8.11.0",
"pino-pretty": "^10.0.0",
"test-results-parser": "^0.2.3",
"uuid": "^9.0.0",
"verror": "^1.10.1"
},
"devDependencies": {
"@types/eslint": "^8.4.5",
"@types/jest": "^27.0.1",
"@types/node": "^16.11.41",
"@types/verror": "^1.10.6",
"@typescript-eslint/eslint-plugin": "^5.32.0",
"@typescript-eslint/parser": "^5.32.0",
"eslint": "^8.21.0",
"eslint-plugin-simple-import-sort": "^7.0.0",
"jest": "^27.0.4",
"jest-extended": "^1.2.0",
"prettier": "^2.7.1",
"ts-essentials": "^8.1.0",
"ts-jest": "^27.0.3",
"ts-node": "^10.0.0",
"typescript": "^4.7.4"
},
"jest": {
"coverageDirectory": "out/coverage",
"coveragePathIgnorePatterns": [
"<rootDir>/node_modules/",
"<rootDir>/test/"
],
"preset": "ts-jest",
"testEnvironment": "node",
"testTimeout": 10000,
"globals": {
"ts-jest": {
"tsconfig": "test/tsconfig.json"
}
}
}
}