-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
79 lines (79 loc) · 1.85 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
{
"name": "reports-check-action",
"version": "0.0.0",
"description": "Bug Reports (GitHub Issues) Quality Checker",
"main": "dist/main.js",
"author": "Aliaksei Bialiauski <[email protected]>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/tracehubpm/reports-check-action.git"
},
"bugs": {
"url": "https://github.com/tracehubpm/reports-check-action/issues"
},
"homepage": "https://github.com/tracehubpm/reports-check-action",
"keywords": [
"actions",
"bug-reports",
"quality",
"social-coding",
"chatgpt"
],
"scripts": {
"gha": "npm run build && npm run package && npm run test",
"cov": "jest --coverage --verbose",
"build": "tsc",
"package": "ncc build --source-map --license licenses.txt",
"format": "prettier --write .",
"test": "jest",
"lint": "prettier --check ."
},
"jest": {
"transform": {
"^.+\\.ts?$": "ts-jest"
},
"moduleFileExtensions": [
"ts",
"js",
"json",
"node"
],
"testRegex": "(/tests/.*\\.(test|spec)?\\.(ts))$",
"coverageDirectory": "../coverage",
"collectCoverageFrom": [
"**/*.ts"
],
"coverageThreshold": {
"global": {
"branches": 1,
"functions": 1,
"statements": 1,
"lines": 1
}
},
"coverageReporters": [
"json",
"lcov",
"text-summary"
],
"testEnvironment": "node"
},
"dependencies": {
"@actions/core": "^1.10.0",
"@actions/github": "^6.0.0",
"@octokit/rest": "^20.0.0",
"js-base64": "^3.7.7",
"openai": "^4.20.1",
"ts-node": "^10.9.1"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^18.15.5",
"@vercel/ncc": "^0.38.0",
"jest": "^29.7.0",
"prettier": "^3.0.0",
"ts-jest": "^29.1.2",
"typescript": "^5.0.2"
}
}