forked from jwgmeligmeyling/spotbugs-github-action
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.92 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.92 KB
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
{
"name": "typescript-action",
"version": "3.1.0",
"private": true,
"description": "TypeScript template action",
"main": "lib/main.js",
"scripts": {
"build": "tsc",
"format": "prettier --write **/*.ts",
"format-check": "prettier --check **/*.ts",
"lint": "eslint src/**/*.ts",
"fix-lint": "eslint src/**/*.ts --fix",
"package": "esbuild src/main.ts --bundle --platform=node --target=node20 --outfile=dist/index.js --sourcemap --conditions=import",
"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/actions/typescript-action.git"
},
"keywords": [
"actions",
"node",
"setup"
],
"author": "Luke Collins",
"license": "MIT",
"dependencies": {
"@actions/core": "^3.0.1",
"@actions/exec": "^3.0.0",
"@actions/github": "^9.1.1",
"@actions/glob": "^0.7.0",
"@actions/io": "^3.0.2",
"@octokit/rest": "latest",
"@types/html-to-text": "^9.0.4",
"fast-xml-parser": "^5.10.1",
"html-to-text": "latest",
"ramda": "^0.32.0",
"unescape": "latest"
},
"devDependencies": {
"@eslint/eslintrc": "^3.3.6",
"@types/istanbul-lib-report": "^3.0.3",
"@types/jest": "^30.0.0",
"@types/node": "^26.2.0",
"@types/ramda": "^0.32.0",
"@typescript-eslint/eslint-plugin": "^8.67.0",
"@typescript-eslint/parser": "^8.67.0",
"esbuild": "^0.28.2",
"eslint": "^10.8.1",
"eslint-plugin-eslint-comments": "^3.2.0",
"eslint-plugin-filenames": "^1.3.2",
"eslint-plugin-github": "^6.1.2",
"eslint-plugin-i18n-text": "^1.0.1",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-jest": "^29.16.0",
"eslint-plugin-no-only-tests": "^3.4.0",
"jest": "^30.4.2",
"jest-circus": "^30.4.2",
"js-yaml": "^5.2.3",
"prettier": "3.9.6",
"ts-jest": "^29.4.12",
"typescript": "^5.9.3"
}
}