mirror of
https://github.com/github/codeql.git
synced 2026-01-04 02:00:18 +01:00
15 lines
394 B
JSON
15 lines
394 B
JSON
{
|
|
"name": "insecure-dep-downloader",
|
|
"dependencies": {
|
|
"foo": "*",
|
|
"good1": "https://example.org/foo",
|
|
"bad1": "http://example.org/foo",
|
|
"bad2": "ftp://example.org/foo"
|
|
},
|
|
"devDependencies": {
|
|
"bar": "*",
|
|
"good2": "https://example.org/foo",
|
|
"bad3": "http://example.org/foo",
|
|
"bad4": "ftp://example.org/foo"
|
|
}
|
|
} |