FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
codeql-action/package.json at main · github/codeql-action · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
github
/
codeql-action
Public
Notifications
You must be signed in to change notification settings
Fork
488
Star
1.6k
Code
Issues
158
Pull requests
35
Actions
Security and quality
2
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Security and quality
Insights
Expand file tree
Breadcrumbs
codeql-action
/
package.json
Copy path
More file actions
More file actions
Latest commit
History
History
History
100 lines (100 loc) · 3.14 KB
Breadcrumbs
codeql-action
/
package.json
Copy path
File metadata and controls
100 lines (100 loc) · 3.14 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name"
:
"
codeql
"
,
"version"
:
"
4.37.9
"
,
"private"
:
true
,
"description"
:
"
CodeQL action
"
,
"scripts"
: {
"_build_comment"
:
"
echo 'Run the full build so we typecheck the project and can reuse the transpiled files in npm test'
"
,
"build"
:
"
./scripts/check-node-modules.sh && npm run transpile && node build.mjs
"
,
"lint"
:
"
eslint --report-unused-disable-directives --max-warnings=0 .
"
,
"lint-ci"
:
"
SARIF_ESLINT_IGNORE_SUPPRESSED=true eslint --report-unused-disable-directives --max-warnings=0 . --format @microsoft/eslint-formatter-sarif --output-file=eslint.sarif
"
,
"lint-fix"
:
"
eslint --report-unused-disable-directives --max-warnings=0 . --fix
"
,
"ava"
:
"
npm run transpile && ava --verbose
"
,
"test"
:
"
npm run ava -- src/
"
,
"test-debug"
:
"
npm run test -- --timeout=20m
"
,
"transpile"
:
"
tsc --build --verbose tsconfig.json
"
,
"update-pr-checks"
:
"
./pr-checks/sync.sh
"
},
"license"
:
"
MIT
"
,
"workspaces"
: [
"
pr-checks
"
],
"dependencies"
: {
"@actions/artifact"
:
"
^5.0.3
"
,
"@actions/artifact-legacy"
:
"
npm:@actions/artifact@^1.1.2
"
,
"@actions/cache"
:
"
^5.2.0
"
,
"@actions/core"
:
"
^2.0.3
"
,
"@actions/exec"
:
"
^2.0.0
"
,
"@actions/github"
:
"
^8.0.1
"
,
"@actions/glob"
:
"
^0.5.0
"
,
"@actions/http-client"
:
"
^3.0.0
"
,
"@actions/io"
:
"
^2.0.0
"
,
"@actions/tool-cache"
:
"
^3.0.1
"
,
"@octokit/core"
:
"
^7.0.7
"
,
"@octokit/plugin-paginate-rest"
:
"
^14.0.0
"
,
"@octokit/plugin-rest-endpoint-methods"
:
"
^17.0.0
"
,
"@octokit/plugin-retry"
:
"
^8.1.1
"
,
"archiver"
:
"
^8.0.0
"
,
"fast-deep-equal"
:
"
^3.1.3
"
,
"follow-redirects"
:
"
^1.16.0
"
,
"get-folder-size"
:
"
^5.0.0
"
,
"https-proxy-agent"
:
"
^7.0.6
"
,
"js-yaml"
:
"
^5.2.3
"
,
"jsonschema"
:
"
1.5.0
"
,
"long"
:
"
^5.3.2
"
,
"node-forge"
:
"
^1.4.0
"
,
"semver"
:
"
^7.8.5
"
,
"uuid"
:
"
^14.0.1
"
,
"undici"
:
"
^6.28.0
"
},
"devDependencies"
: {
"@ava/typescript"
:
"
6.0.0
"
,
"@eslint/compat"
:
"
^2.1.0
"
,
"@microsoft/eslint-formatter-sarif"
:
"
^3.1.0
"
,
"@octokit/types"
:
"
^16.0.0
"
,
"@types/archiver"
:
"
^8.0.0
"
,
"@types/follow-redirects"
:
"
^1.14.4
"
,
"@types/js-yaml"
:
"
^4.0.9
"
,
"@types/node"
:
"
^20.19.43
"
,
"@types/node-forge"
:
"
^1.3.14
"
,
"@types/sarif"
:
"
^2.1.7
"
,
"@types/semver"
:
"
^7.8.0
"
,
"@types/sinon"
:
"
^22.0.0
"
,
"ava"
:
"
^6.4.1
"
,
"esbuild"
:
"
^0.28.2
"
,
"eslint"
:
"
^9.39.5
"
,
"eslint-import-resolver-typescript"
:
"
^4.4.5
"
,
"eslint-plugin-github"
:
"
^6.1.2
"
,
"eslint-plugin-import-x"
:
"
^4.17.1
"
,
"eslint-plugin-jsdoc"
:
"
^62.9.0
"
,
"eslint-plugin-no-async-foreach"
:
"
^0.1.1
"
,
"glob"
:
"
^13.0.6
"
,
"globals"
:
"
^17.11.0
"
,
"nock"
:
"
^14.0.17
"
,
"sinon"
:
"
^22.1.0
"
,
"typescript"
:
"
^6.0.3
"
,
"typescript-eslint"
:
"
^8.67.0
"
},
"overrides"
: {
"@actions/tool-cache"
: {
"semver"
:
"
>=6.3.1
"
},
"@octokit/request-error"
: {
"semver"
:
"
>=5.1.1
"
},
"@octokit/request"
: {
"semver"
:
"
>=8.4.1
"
},
"@octokit/plugin-paginate-rest"
: {
"semver"
:
"
>=9.2.2
"
},
"eslint-plugin-import"
: {
"semver"
:
"
>=6.3.1
"
},
"eslint-plugin-jsx-a11y"
: {
"semver"
:
"
>=6.3.1
"
},
"glob"
:
"
^13.0.6
"
,
"undici"
:
"
^6.28.0
"
}
}
Back
|
FazBrowse Home
|
New Git URL