Skip to content
Permalink
Newer
Older
100644 65 lines (65 sloc) 1.75 KB
1
{
2
"name": "codeql",
3
"version": "0.0.0",
4
"private": true,
5
"description": "CodeQL action",
6
"scripts": {
7
"build": "tsc",
June 23, 2020 13:42
8
"test": "ava src/** --serial --verbose",
September 14, 2020 10:37
9
"lint": "eslint --report-unused-disable-directives --max-warnings=0 . --ext .js,.ts",
10
"lint-fix": "eslint --report-unused-disable-directives --max-warnings=0 . --ext .js,.ts --fix",
11
"removeNPMAbsolutePaths": "removeNPMAbsolutePaths . --force"
May 4, 2020 18:28
13
"ava": {
14
"typescript": {
15
"rewritePaths": {
16
"src/": "lib/"
17
}
18
}
19
},
20
"license": "MIT",
21
"dependencies": {
22
"@actions/core": "^1.2.6",
23
"@actions/exec": "^1.0.1",
24
"@actions/github": "^4.0.0",
25
"@actions/http-client": "^1.0.8",
26
"@actions/tool-cache": "^1.5.5",
27
"@octokit/plugin-retry": "^3.0.3",
August 12, 2020 17:42
28
"commander": "^6.0.0",
29
"console-log-level": "^1.4.1",
30
"file-url": "^3.0.0",
31
"fs": "0.0.1-security",
32
"js-yaml": "^3.13.1",
33
"jsonschema": "1.2.6",
34
"long": "^4.0.0",
35
"md5": "^2.2.1",
36
"path": "^0.12.7",
37
"semver": "^7.3.2",
38
"uuid": "^8.3.0",
39
"zlib": "^1.0.5"
40
},
May 4, 2020 18:50
41
"//": [
42
"micromatch is an unspecified dependency of ava"
43
],
44
"devDependencies": {
May 4, 2020 18:50
45
"@ava/typescript": "1.1.1",
46
"@types/jszip": "^3.1.6",
47
"@types/long": "4.0.0",
48
"@types/nock": "^11.1.0",
49
"@types/node": "^12.0.4",
50
"@types/semver": "^7.2.0",
July 7, 2020 18:32
51
"@types/sinon": "^7.2.0",
52
"@typescript-eslint/parser": "^4.1.0",
May 4, 2020 18:50
53
"ava": "3.8.1",
54
"eslint": "^7.9.0",
55
"eslint-plugin-filenames": "^1.3.2",
56
"eslint-plugin-github": "^4.1.1",
57
"eslint-plugin-import": "^2.22.0",
58
"eslint-plugin-no-async-foreach": "^0.1.1",
May 4, 2020 18:50
59
"micromatch": "4.0.2",
60
"nock": "^12.0.3",
61
"removeNPMAbsolutePaths": "2.0.0",
June 24, 2020 14:33
62
"sinon": "^9.0.2",
63
"typescript": "^3.7.5"
September 14, 2020 10:42
65
}