Skip to content
Permalink
Newer
Older
100644 76 lines (76 sloc) 2.09 KB
1
{
2
"name": "codeql",
3
"version": "1.1.12",
4
"private": true,
5
"description": "CodeQL action",
6
"scripts": {
May 7, 2021 20:15
7
"build": "tsc --build",
February 1, 2022 18:01
8
"test": "ava src/**.test.ts --serial --verbose",
9
"test-debug": "ava src/**.test.ts --serial --verbose --timeout=20m",
September 14, 2020 10:37
10
"lint": "eslint --report-unused-disable-directives --max-warnings=0 . --ext .js,.ts",
11
"lint-fix": "eslint --report-unused-disable-directives --max-warnings=0 . --ext .js,.ts --fix",
March 22, 2022 19:35
12
"removeNPMAbsolutePaths": "removeNPMAbsolutePaths . --force"
May 4, 2020 18:28
14
"ava": {
15
"typescript": {
16
"rewritePaths": {
17
"src/": "lib/"
18
},
19
"compile": false
May 4, 2020 18:28
20
}
21
},
22
"license": "MIT",
23
"dependencies": {
24
"@actions/artifact": "^1.0.0",
25
"@actions/core": "^1.4.0",
26
"@actions/exec": "^1.1.0",
27
"@actions/github": "^4.0.0",
28
"@actions/io": "^1.1.0",
29
"@actions/tool-cache": "^2.0.0",
30
"@chrisgavin/safe-which": "^1.0.2",
31
"@octokit/plugin-retry": "^3.0.9",
32
"@octokit/types": "^6.21.1",
33
"commander": "^8.1.0",
34
"console-log-level": "^1.4.1",
December 8, 2021 12:00
35
"del": "^6.0.0",
36
"fast-deep-equal": "^3.1.3",
37
"file-url": "^3.0.0",
38
"fs": "0.0.1-security",
August 25, 2021 10:45
39
"github-linguist": "^2.4.4",
April 14, 2022 17:00
40
"glob": "^8.0.1",
July 27, 2021 18:59
41
"js-yaml": "^4.1.0",
42
"jsonschema": "1.2.6",
January 31, 2022 18:32
43
"long": "^5.2.0",
July 28, 2021 15:04
44
"md5": "^2.3.0",
45
"path": "^0.12.7",
46
"query-string": "^7.0.1",
47
"semver": "^7.3.2",
July 28, 2021 08:07
48
"uuid": "^8.3.2",
49
"zlib": "^1.0.5"
50
},
May 4, 2020 18:50
51
"//": [
52
"micromatch is an unspecified dependency of ava"
53
],
54
"devDependencies": {
55
"@ava/typescript": "3.0.1",
56
"@types/long": "4.0.1",
57
"@types/node": "12.12",
58
"@types/semver": "^7.3.8",
59
"@types/sinon": "^10.0.2",
60
"@typescript-eslint/parser": "^5.0.0",
February 1, 2022 18:01
61
"ava": "^4.0.1",
August 2, 2021 08:57
62
"eslint": "^7.32.0",
63
"eslint-plugin-filenames": "^1.3.2",
64
"eslint-plugin-github": "^4.2.0",
65
"eslint-plugin-import": "^2.24.0",
66
"eslint-plugin-no-async-foreach": "^0.1.1",
67
"micromatch": "4.0.4",
July 27, 2021 16:51
68
"nock": "^13.1.1",
69
"removeNPMAbsolutePaths": "3.0.0",
January 29, 2022 01:16
70
"sinon": "^13.0.0",
September 2, 2021 17:00
71
"typescript": "^4.4.2"
July 14, 2021 14:35
72
},
73
"resolutions": {
October 21, 2021 15:24
74
"glob-parent": ">=5.1.2"
March 7, 2022 21:02
76
}