Skip to content
Permalink
Newer
Older
100644 78 lines (78 sloc) 2.23 KB
1
{
2
"name": "codeql",
February 23, 2022 19:33
3
"version": "1.1.4",
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",
12
"removeNPMAbsolutePaths": "removeNPMAbsolutePaths . --force",
13
"version": "cd runner && npm version patch && cd .. && npm run removeNPMAbsolutePaths && git add runner"
May 4, 2020 18:28
15
"ava": {
16
"typescript": {
17
"rewritePaths": {
18
"src/": "lib/"
19
},
20
"compile": false
May 4, 2020 18:28
21
}
22
},
23
"license": "MIT",
24
"dependencies": {
25
"@actions/artifact": "^1.0.0",
26
"@actions/core": "^1.4.0",
27
"@actions/exec": "^1.1.0",
28
"@actions/github": "^4.0.0",
29
"@actions/http-client": "^1.0.11",
30
"@actions/io": "^1.1.0",
June 23, 2021 14:07
31
"@actions/tool-cache": "^1.7.1",
32
"@chrisgavin/safe-which": "^1.0.2",
33
"@octokit/plugin-retry": "^3.0.9",
34
"@octokit/types": "^6.21.1",
35
"commander": "^8.1.0",
36
"console-log-level": "^1.4.1",
December 8, 2021 12:00
37
"del": "^6.0.0",
38
"fast-deep-equal": "^3.1.3",
39
"file-url": "^3.0.0",
40
"fs": "0.0.1-security",
August 25, 2021 10:45
41
"github-linguist": "^2.4.4",
42
"glob": "^7.1.7",
July 27, 2021 18:59
43
"js-yaml": "^4.1.0",
44
"jsonschema": "1.2.6",
January 31, 2022 18:32
45
"long": "^5.2.0",
July 28, 2021 15:04
46
"md5": "^2.3.0",
47
"path": "^0.12.7",
48
"query-string": "^7.0.1",
49
"semver": "^7.3.2",
July 28, 2021 08:07
50
"uuid": "^8.3.2",
51
"zlib": "^1.0.5"
52
},
May 4, 2020 18:50
53
"//": [
54
"micromatch is an unspecified dependency of ava"
55
],
56
"devDependencies": {
57
"@ava/typescript": "3.0.1",
58
"@types/long": "4.0.1",
February 17, 2022 13:52
59
"@types/node": "12.12",
60
"@types/semver": "^7.3.8",
61
"@types/sinon": "^10.0.2",
62
"@typescript-eslint/parser": "^5.0.0",
February 1, 2022 18:01
63
"ava": "^4.0.1",
August 2, 2021 08:57
64
"eslint": "^7.32.0",
65
"eslint-plugin-filenames": "^1.3.2",
66
"eslint-plugin-github": "^4.2.0",
67
"eslint-plugin-import": "^2.24.0",
68
"eslint-plugin-no-async-foreach": "^0.1.1",
69
"micromatch": "4.0.4",
July 27, 2021 16:51
70
"nock": "^13.1.1",
71
"removeNPMAbsolutePaths": "3.0.0",
January 29, 2022 01:16
72
"sinon": "^13.0.0",
September 2, 2021 17:00
73
"typescript": "^4.4.2"
July 14, 2021 14:35
74
},
75
"resolutions": {
October 21, 2021 15:24
76
"glob-parent": ">=5.1.2"
September 14, 2020 10:42
78
}