Permalink
codeql-action/package.json
Newer
100644
79 lines (79 sloc)
2.26 KB
1
{
2
"name": "codeql",
4
"private": true,
5
"description": "CodeQL action",
6
"scripts": {
8
"test": "ava src/** --serial --verbose",
9
"test-debug": "ava src/** --serial --verbose --timeout=20m",
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"
15
"ava": {
16
"typescript": {
17
"rewritePaths": {
18
"src/": "lib/"
19
}
20
}
21
},
22
"license": "MIT",
23
"dependencies": {
24
"@actions/artifact": "^0.5.1",
25
"@actions/core": "^1.2.6",
26
"@actions/exec": "^1.1.0",
27
"@actions/github": "^4.0.0",
28
"@actions/http-client": "^1.0.11",
29
"@actions/io": "^1.1.0",
30
"@actions/tool-cache": "^1.7.1",
31
"@chrisgavin/safe-which": "^1.0.2",
32
"@octokit/plugin-retry": "^3.0.3",
33
"@octokit/types": "^5.5.0",
34
"commander": "^8.0.0-1",
35
"console-log-level": "^1.4.1",
36
"fast-deep-equal": "^3.1.3",
37
"file-url": "^3.0.0",
38
"fs": "0.0.1-security",
39
"github-linguist": "^2.4.3",
40
"glob": "^7.1.7",
41
"js-yaml": "^3.13.1",
42
"jsonschema": "1.2.6",
43
"long": "^4.0.0",
44
"md5": "^2.2.1",
45
"path": "^0.12.7",
46
"query-string": "^6.14.0",
47
"semver": "^7.3.2",
48
"uuid": "^8.3.0",
49
"zlib": "^1.0.5"
50
},
51
"//": [
52
"micromatch is an unspecified dependency of ava"
53
],
54
"devDependencies": {
55
"@ava/typescript": "1.1.1",
56
"@types/jszip": "^3.1.6",
57
"@types/long": "4.0.0",
58
"@types/nock": "^11.1.0",
59
"@types/node": "^12.0.4",
60
"@types/semver": "^7.2.0",
62
"@typescript-eslint/parser": "^4.1.0",
64
"eslint": "^7.9.0",
65
"eslint-plugin-filenames": "^1.3.2",
66
"eslint-plugin-github": "^4.1.5",
67
"eslint-plugin-import": "^2.22.0",
68
"eslint-plugin-no-async-foreach": "^0.1.1",
70
"nock": "^13.1.1",
71
"removeNPMAbsolutePaths": "2.0.0",
72
"sinon": "^9.0.2",
73
"typescript": "^4.3.5"
74
},
75
"resolutions": {
76
"glob-parent": ">=5.1.2",
77
"normalize-url": ">=4.5.1"