-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 871 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 871 Bytes
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
{
"name": "workflow-testing",
"version": "1.0.0",
"description": "",
"scripts": {
"build": "tsc",
"build:filter-tests": "tsc .github/actions/filter-tests/src/index.ts --outDir .github/actions/filter-tests/dist --esModuleInterop",
"test": "jest --coverage",
"lint": "eslint .",
"format": "prettier --check \"**/*.{ts,js,json}\"",
"format:fix": "prettier --write \"**/*.{ts,js,json}\""
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/jest": "^30.0.0",
"@typescript-eslint/eslint-plugin": "^8.34.1",
"@typescript-eslint/parser": "^8.34.1",
"eslint": "^9.29.0",
"jest": "^30.0.2",
"prettier": "^3.5.3",
"ts-jest": "^29.4.0",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
},
"dependencies": {
"@actions/core": "^1.11.1",
"@actions/github": "^6.0.1"
}
}