generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 16
/
package.json
70 lines (70 loc) · 1.75 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
{
"name": "trx-parser",
"version": "0.0.0",
"private": true,
"description": "GitHub Action to parse test results and block PRs using the Check API",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"format": "prettier --write \"**/*.ts\"",
"format-check": "prettier --check \"**/*.ts\"",
"lint": "eslint \"src/**/*.ts\"",
"lint-fix": "eslint --fix \"src/**/*.ts\"",
"package": "ncc build --source-map --license licenses.txt",
"test": "jest",
"all": "npm run build && npm run format && npm run lint && npm run package && npm test"
},
"repository": {
"type": "git",
"url": "git+https://github.com/NasAmin/trx-parser.git"
},
"engines": {
"node": ">= 20",
"npm": ">= 10"
},
"keywords": [
"actions",
"node",
"setup",
"github",
"dotnet",
"test",
"report",
"trx",
"check",
"status"
],
"author": "Nasir Amin",
"license": "MIT",
"husky": {
"hooks": {
"pre-commit": "lint-staged && ./scripts/pre-commit.sh",
"pre-push": "./scripts/pre-push.sh"
}
},
"dependencies": {
"@actions/core": "^1.10.1",
"@actions/github": "^6.0.0",
"@octokit/webhooks-types": "^7.5.0",
"@types/he": "^1.1.2",
"fast-xml-parser": "^4.2.6",
"he": "^1.2.0"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/node": "^20.12.7",
"@typescript-eslint/eslint-plugin": "^5.48.2",
"@typescript-eslint/parser": "^5.54.0",
"@vercel/ncc": "^0.38.1",
"eslint": "^8.57.0",
"eslint-plugin-github": "^4.6.0",
"eslint-plugin-jest": "^25.7.0",
"husky": "^9.0.11",
"jest": "^29.7.0",
"jest-circus": "^29.7.0",
"lint-staged": "^15.2.4",
"prettier": "2.2.1",
"ts-jest": "^29.1.2",
"typescript": "^4.9.5"
}
}