scanoss 0.2.11 → 0.2.12
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.circleci/config.yml +64 -0
- package/.cspell.json +34 -0
- package/.editorconfig +15 -0
- package/.eslintrc.json +37 -0
- package/.gitignore +11 -0
- package/.prettierignore +2 -0
- package/.vscode/extensions.json +8 -0
- package/.vscode/launch.json +29 -0
- package/.vscode/settings.json +7 -0
- package/build/tsconfig.module.tsbuildinfo +1 -0
- package/build/tsconfig.tsbuildinfo +1 -0
- package/examples/defaultFilter.json +203 -0
- package/package-lock.json +18277 -0
- package/package.json +1 -1
- package/src/bin/cli-bin.ts +56 -0
- package/src/commands/dep.ts +23 -0
- package/src/commands/scan.ts +97 -0
- package/src/index.ts +5 -0
- package/src/lib/dependencies/Dependency.ts +58 -0
- package/src/lib/dependencies/DependencyTypes.ts +22 -0
- package/src/lib/dependencies/PurlGenerator.ts +41 -0
- package/src/lib/dependencies/parsers/golangParser.ts +4 -0
- package/src/lib/dependencies/parsers/mavenParser.ts +48 -0
- package/src/lib/dependencies/parsers/npmParser.ts +44 -0
- package/src/lib/dependencies/parsers/pyParser.ts +46 -0
- package/src/lib/dependencies/parsers/rubyParser.ts +181 -0
- package/src/lib/dependencies/parsers/types.ts +50 -0
- package/src/lib/dependencies/parsers/utils.ts +16 -0
- package/src/lib/filters/defaultFilter.ts +207 -0
- package/src/lib/filters/filtering.ts +234 -0
- package/src/lib/scanner/Dispatcher/DispatchableItem.ts +29 -0
- package/src/lib/scanner/Dispatcher/Dispatcher.ts +151 -0
- package/src/lib/scanner/Dispatcher/DispatcherResponse.ts +40 -0
- package/src/lib/scanner/Dispatcher/GlobalControllerAborter.ts +33 -0
- package/src/lib/scanner/Scannable/ScannableItem.ts +43 -0
- package/src/lib/scanner/Scanner.ts +319 -0
- package/src/lib/scanner/ScannerCfg.ts +29 -0
- package/src/lib/scanner/ScannerTypes.ts +41 -0
- package/src/lib/scanner/Winnower/Winnower.ts +439 -0
- package/src/lib/scanner/Winnower/WinnowerExtractor.ts +38 -0
- package/src/lib/scanner/Winnower/WinnowerResponse.ts +38 -0
- package/src/lib/tree/File.ts +20 -0
- package/src/lib/tree/Folder.ts +50 -0
- package/src/lib/tree/Node.ts +34 -0
- package/src/lib/tree/Tree.ts +89 -0
- package/tsconfig.json +47 -0
- package/tsconfig.module.json +11 -0
- package/yarn.lock +5675 -0
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
# https://circleci.com/docs/2.0/language-javascript/
|
|
2
|
+
version: 2
|
|
3
|
+
jobs:
|
|
4
|
+
'node-10':
|
|
5
|
+
docker:
|
|
6
|
+
- image: circleci/node:10
|
|
7
|
+
steps:
|
|
8
|
+
- checkout
|
|
9
|
+
# Download and cache dependencies
|
|
10
|
+
- restore_cache:
|
|
11
|
+
keys:
|
|
12
|
+
- v1-dependencies-{{ checksum "package.json" }}
|
|
13
|
+
# fallback to using the latest cache if no exact match is found
|
|
14
|
+
- v1-dependencies-
|
|
15
|
+
- run: npm install
|
|
16
|
+
- save_cache:
|
|
17
|
+
paths:
|
|
18
|
+
- node_modules
|
|
19
|
+
key: v1-dependencies-{{ checksum "package.json" }}
|
|
20
|
+
- run: npm test
|
|
21
|
+
- run: npm run cov:send
|
|
22
|
+
- run: npm run cov:check
|
|
23
|
+
'node-12':
|
|
24
|
+
docker:
|
|
25
|
+
- image: circleci/node:12
|
|
26
|
+
steps:
|
|
27
|
+
- checkout
|
|
28
|
+
- restore_cache:
|
|
29
|
+
keys:
|
|
30
|
+
- v1-dependencies-{{ checksum "package.json" }}
|
|
31
|
+
- v1-dependencies-
|
|
32
|
+
- run: npm install
|
|
33
|
+
- save_cache:
|
|
34
|
+
paths:
|
|
35
|
+
- node_modules
|
|
36
|
+
key: v1-dependencies-{{ checksum "package.json" }}
|
|
37
|
+
- run: npm test
|
|
38
|
+
- run: npm run cov:send
|
|
39
|
+
- run: npm run cov:check
|
|
40
|
+
'node-latest':
|
|
41
|
+
docker:
|
|
42
|
+
- image: circleci/node:latest
|
|
43
|
+
steps:
|
|
44
|
+
- checkout
|
|
45
|
+
- restore_cache:
|
|
46
|
+
keys:
|
|
47
|
+
- v1-dependencies-{{ checksum "package.json" }}
|
|
48
|
+
- v1-dependencies-
|
|
49
|
+
- run: npm install
|
|
50
|
+
- save_cache:
|
|
51
|
+
paths:
|
|
52
|
+
- node_modules
|
|
53
|
+
key: v1-dependencies-{{ checksum "package.json" }}
|
|
54
|
+
- run: npm test
|
|
55
|
+
- run: npm run cov:send
|
|
56
|
+
- run: npm run cov:check
|
|
57
|
+
|
|
58
|
+
workflows:
|
|
59
|
+
version: 2
|
|
60
|
+
build:
|
|
61
|
+
jobs:
|
|
62
|
+
- 'node-10'
|
|
63
|
+
- 'node-12'
|
|
64
|
+
- 'node-latest'
|
package/.cspell.json
ADDED
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": "0.1",
|
|
3
|
+
"$schema": "https://raw.githubusercontent.com/streetsidesoftware/cspell/master/cspell.schema.json",
|
|
4
|
+
"language": "en",
|
|
5
|
+
"words": [
|
|
6
|
+
"bitjson",
|
|
7
|
+
"bitauth",
|
|
8
|
+
"cimg",
|
|
9
|
+
"circleci",
|
|
10
|
+
"codecov",
|
|
11
|
+
"commitlint",
|
|
12
|
+
"dependabot",
|
|
13
|
+
"editorconfig",
|
|
14
|
+
"esnext",
|
|
15
|
+
"execa",
|
|
16
|
+
"exponentiate",
|
|
17
|
+
"globby",
|
|
18
|
+
"libauth",
|
|
19
|
+
"mkdir",
|
|
20
|
+
"prettierignore",
|
|
21
|
+
"sandboxed",
|
|
22
|
+
"transpiled",
|
|
23
|
+
"typedoc",
|
|
24
|
+
"untracked"
|
|
25
|
+
],
|
|
26
|
+
"flagWords": [],
|
|
27
|
+
"ignorePaths": [
|
|
28
|
+
"package.json",
|
|
29
|
+
"package-lock.json",
|
|
30
|
+
"yarn.lock",
|
|
31
|
+
"tsconfig.json",
|
|
32
|
+
"node_modules/**"
|
|
33
|
+
]
|
|
34
|
+
}
|
package/.editorconfig
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
# http://editorconfig.org
|
|
2
|
+
root = true
|
|
3
|
+
|
|
4
|
+
[*]
|
|
5
|
+
charset = utf-8
|
|
6
|
+
end_of_line = lf
|
|
7
|
+
indent_size = 2
|
|
8
|
+
indent_style = space
|
|
9
|
+
insert_final_newline = true
|
|
10
|
+
max_line_length = 80
|
|
11
|
+
trim_trailing_whitespace = true
|
|
12
|
+
|
|
13
|
+
[*.md]
|
|
14
|
+
max_line_length = 0
|
|
15
|
+
trim_trailing_whitespace = false
|
package/.eslintrc.json
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
{
|
|
2
|
+
"root": true,
|
|
3
|
+
"parser": "@typescript-eslint/parser",
|
|
4
|
+
"parserOptions": { "project": "./tsconfig.json" },
|
|
5
|
+
"env": { "es6": true },
|
|
6
|
+
"ignorePatterns": ["node_modules", "build", "coverage"],
|
|
7
|
+
"plugins": ["import", "eslint-comments"],
|
|
8
|
+
"extends": [
|
|
9
|
+
"eslint:recommended",
|
|
10
|
+
"plugin:eslint-comments/recommended",
|
|
11
|
+
"plugin:@typescript-eslint/recommended",
|
|
12
|
+
"plugin:import/typescript",
|
|
13
|
+
"prettier",
|
|
14
|
+
"prettier/@typescript-eslint"
|
|
15
|
+
],
|
|
16
|
+
"globals": { "BigInt": true, "console": true, "WebAssembly": true },
|
|
17
|
+
"rules": {
|
|
18
|
+
"class-methods-use-this": "off",
|
|
19
|
+
"@typescript-eslint/explicit-module-boundary-types": "off",
|
|
20
|
+
"eslint-comments/disable-enable-pair": [
|
|
21
|
+
"error",
|
|
22
|
+
{ "allowWholeFile": true }
|
|
23
|
+
],
|
|
24
|
+
"eslint-comments/no-unused-disable": false,
|
|
25
|
+
"import/order": [
|
|
26
|
+
"error",
|
|
27
|
+
{ "newlines-between": "always", "alphabetize": { "order": "asc" } }
|
|
28
|
+
],
|
|
29
|
+
"sort-imports": [
|
|
30
|
+
"error",
|
|
31
|
+
{ "ignoreDeclarationSort": true, "ignoreCase": true }
|
|
32
|
+
],
|
|
33
|
+
"no-unused-vars": "off",
|
|
34
|
+
"@typescript-eslint/no-unused-vars": ["warn"],
|
|
35
|
+
"@typescript-eslint/no-explicit-any": ["off"]
|
|
36
|
+
}
|
|
37
|
+
}
|
package/.gitignore
ADDED
package/.prettierignore
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": "0.2.0",
|
|
3
|
+
"configurations": [
|
|
4
|
+
// To debug, make sure a *.spec.ts file is active in the editor, then run a configuration
|
|
5
|
+
{
|
|
6
|
+
"type": "node",
|
|
7
|
+
"request": "launch",
|
|
8
|
+
"name": "Debug Active Spec",
|
|
9
|
+
"runtimeExecutable": "${workspaceFolder}/node_modules/.bin/ava",
|
|
10
|
+
"runtimeArgs": ["debug", "--break", "--serial", "${file}"],
|
|
11
|
+
"port": 9229,
|
|
12
|
+
"outputCapture": "std",
|
|
13
|
+
"skipFiles": ["<node_internals>/**/*.js"],
|
|
14
|
+
"preLaunchTask": "npm: build"
|
|
15
|
+
// "smartStep": true
|
|
16
|
+
},
|
|
17
|
+
{
|
|
18
|
+
// Use this one if you're already running `yarn watch`
|
|
19
|
+
"type": "node",
|
|
20
|
+
"request": "launch",
|
|
21
|
+
"name": "Debug Active Spec (no build)",
|
|
22
|
+
"runtimeExecutable": "${workspaceFolder}/node_modules/.bin/ava",
|
|
23
|
+
"runtimeArgs": ["debug", "--break", "--serial", "${file}"],
|
|
24
|
+
"port": 9229,
|
|
25
|
+
"outputCapture": "std",
|
|
26
|
+
"skipFiles": ["<node_internals>/**/*.js"]
|
|
27
|
+
// "smartStep": true
|
|
28
|
+
}]
|
|
29
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"program":{"fileNames":["../node_modules/typescript/lib/lib.es5.d.ts","../node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/typescript/lib/lib.esnext.intl.d.ts","../src/lib/scanner/ScannerTypes.ts","../src/lib/scanner/ScannerCfg.ts","../node_modules/eventemitter3/index.d.ts","../src/lib/scanner/Scannable/ScannableItem.ts","../src/lib/scanner/Winnower/WinnowerExtractor.ts","../src/lib/scanner/Winnower/WinnowerResponse.ts","../src/lib/scanner/Winnower/Winnower.ts","../node_modules/p-queue/dist/queue.d.ts","../node_modules/p-queue/dist/options.d.ts","../node_modules/p-queue/dist/priority-queue.d.ts","../node_modules/p-queue/dist/index.d.ts","../node_modules/@types/node/assert.d.ts","../node_modules/@types/node/assert/strict.d.ts","../node_modules/@types/node/globals.d.ts","../node_modules/@types/node/async_hooks.d.ts","../node_modules/@types/node/buffer.d.ts","../node_modules/@types/node/child_process.d.ts","../node_modules/@types/node/cluster.d.ts","../node_modules/@types/node/console.d.ts","../node_modules/@types/node/constants.d.ts","../node_modules/@types/node/crypto.d.ts","../node_modules/@types/node/dgram.d.ts","../node_modules/@types/node/diagnostics_channel.d.ts","../node_modules/@types/node/dns.d.ts","../node_modules/@types/node/dns/promises.d.ts","../node_modules/@types/node/domain.d.ts","../node_modules/@types/node/events.d.ts","../node_modules/@types/node/fs.d.ts","../node_modules/@types/node/fs/promises.d.ts","../node_modules/@types/node/http.d.ts","../node_modules/@types/node/http2.d.ts","../node_modules/@types/node/https.d.ts","../node_modules/@types/node/inspector.d.ts","../node_modules/@types/node/module.d.ts","../node_modules/@types/node/net.d.ts","../node_modules/@types/node/os.d.ts","../node_modules/@types/node/path.d.ts","../node_modules/@types/node/perf_hooks.d.ts","../node_modules/@types/node/process.d.ts","../node_modules/@types/node/punycode.d.ts","../node_modules/@types/node/querystring.d.ts","../node_modules/@types/node/readline.d.ts","../node_modules/@types/node/repl.d.ts","../node_modules/@types/node/stream.d.ts","../node_modules/@types/node/stream/promises.d.ts","../node_modules/@types/node/stream/consumers.d.ts","../node_modules/@types/node/stream/web.d.ts","../node_modules/@types/node/string_decoder.d.ts","../node_modules/@types/node/timers.d.ts","../node_modules/@types/node/timers/promises.d.ts","../node_modules/@types/node/tls.d.ts","../node_modules/@types/node/trace_events.d.ts","../node_modules/@types/node/tty.d.ts","../node_modules/@types/node/url.d.ts","../node_modules/@types/node/util.d.ts","../node_modules/@types/node/v8.d.ts","../node_modules/@types/node/vm.d.ts","../node_modules/@types/node/wasi.d.ts","../node_modules/@types/node/worker_threads.d.ts","../node_modules/@types/node/zlib.d.ts","../node_modules/@types/node/globals.global.d.ts","../node_modules/@types/node/index.d.ts","../node_modules/form-data/index.d.ts","../src/lib/scanner/Dispatcher/DispatcherResponse.ts","../node_modules/event-target-shim/index.d.ts","../node_modules/abort-controller/dist/abort-controller.d.ts","../src/lib/scanner/Dispatcher/GlobalControllerAborter.ts","../src/lib/scanner/Dispatcher/DispatchableItem.ts","../src/lib/scanner/Dispatcher/Dispatcher.ts","../src/lib/scanner/Scanner.ts","../src/lib/dependencies/DependencyTypes.ts","../src/lib/dependencies/parsers/types.ts","../node_modules/packageurl-js/src/package-url.d.ts","../node_modules/packageurl-js/index.d.ts","../src/lib/dependencies/parsers/utils.ts","../src/lib/dependencies/parsers/mavenParser.ts","../src/lib/dependencies/parsers/npmParser.ts","../src/lib/dependencies/parsers/pyParser.ts","../src/lib/dependencies/parsers/rubyParser.ts","../src/lib/dependencies/PurlGenerator.ts","../src/lib/dependencies/Dependency.ts","../src/index.ts","../node_modules/commander/typings/index.d.ts","../src/lib/tree/Node.ts","../src/lib/tree/File.ts","../src/lib/tree/Folder.ts","../node_modules/isbinaryfile/lib/index.d.ts","../src/lib/filters/filtering.ts","../src/lib/tree/Tree.ts","../src/commands/dep.ts","../src/lib/filters/defaultFilter.ts","../src/commands/scan.ts","../src/bin/cli-bin.ts","../src/lib/dependencies/parsers/golangParser.ts"],"fileInfos":[{"version":"89f78430e422a0f06d13019d60d5a45b37ec2d28e67eb647f73b1b0d19a46b72","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","e21c071ca3e1b4a815d5f04a7475adcaeea5d64367e840dd0154096d705c3940",{"version":"d8996609230d17e90484a2dd58f22668f9a05a3bfe00bfb1d6271171e54a31fb","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"4378fc8122ec9d1a685b01eb66c46f62aba6b239ca7228bb6483bcf8259ee493","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"62d80405c46c3f4c527ee657ae9d43fda65a0bf582292429aea1e69144a522a6","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"1b3fe904465430e030c93239a348f05e1be80640d91f2f004c3512c2c2c89f34","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"d071129cba6a5f2700be09c86c07ad2791ab67d4e5ed1eb301d6746c62745ea4","affectsGlobalScope":true},{"version":"10bbdc1981b8d9310ee75bfac28ee0477bb2353e8529da8cff7cb26c409cb5e8","affectsGlobalScope":true},{"version":"268686210498352a10582ba01a1b8ad58031c7cfd6b114d5e831e1ddf946a449","signature":"8877230d1b56a97ebd7282ea7621719e8db67317b1d0849588d866474c8376fe"},{"version":"fb686f00627f38fbda020518f56cbbaf07d59987774fe0c7d675829ed1bf7af1","signature":"4a4631ad2efb3cf5bb6e8ef4a756608584a6ecfe3b173b1585aa23b6a25adb87"},"b80c780c52524beb13488942543972c8b0e54400e8b59cee0169f38d0fabb968",{"version":"ed9c15833062f96cc2978993220e3c2f34fede9f7b254265393514090e56f67a","signature":"341043ce470435f4e40cd238f03e5c68136989bf22c323ca2fdd70dd005af94d"},{"version":"62997e15d3e0c33183ea514470b8e825afe81ebd7b7571fbc44c1c7e1909e3b0","signature":"aa73c2e94477f081281097f22d238bf3866cd1a4dc80e60ee7ed81428077338d"},{"version":"e486326b6ec5d603c3e4bc709ad2839910146491687e329b5ba16090984e042a","signature":"abc4bffe3e126acb3a3d00afaa45439456180546456079957a4ef6ac90b6da58"},{"version":"c39964ea9bb7a843cda216fbbea30af91c286a68c4d11cf1ec32add1fa1b8ea5","signature":"1104fc0d505a444e11cd04e14218a891b560e2048b5a0ce17f81a64d4bb94790"},"a0a118c9a66853bb5ec086c878963b5d178ecb3eec72d75dc553d86adef67801","4bbf82fc081be97a72c494d1055e4f62ad743957cdc52b5a597b49d262ae5fd4","4583bf6ebd196f0c7e9aa26bfe5dfee09ea69eee63c2e97448518ea5ee17bc64","2b16288372f6367cdb13e77cbd0e667d5af3034a5b733a0daa98a111cfee227f","0cba3a5d7b81356222594442753cf90dd2892e5ccfe1d262aaca6896ba6c1380","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"92d63add669d18ebc349efbacd88966d6f2ccdddfb1b880b2db98ae3aa7bf7c4","affectsGlobalScope":true},"422dbb183fdced59425ca072c8bd09efaa77ce4e2ab928ec0d8a1ce062d2a45a",{"version":"2a801b0322994c3dd7f0ef30265d19b3dd3bae6d793596879166ed6219c3da68","affectsGlobalScope":true},"1dab5ab6bcf11de47ab9db295df8c4f1d92ffa750e8f095e88c71ce4c3299628","f71f46ccd5a90566f0a37b25b23bc4684381ab2180bdf6733f4e6624474e1894",{"version":"54e65985a3ee3cec182e6a555e20974ea936fc8b8d1738c14e8ed8a42bd921d4","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","bcc8caf03ee65fe8610d258752f255fbdddbb2e4de7b6c5628956a5a0d859ec8","34e5de87d983bc6aefef8b17658556e3157003e8d9555d3cb098c6bef0b5fbc8","cc0b61316c4f37393f1f9595e93b673f4184e9d07f4c127165a490ec4a928668","f27371653aded82b2b160f7a7033fb4a5b1534b6f6081ef7be1468f0f15327d3","c762cd6754b13a461c54b59d0ae0ab7aeef3c292c6cf889873f786ee4d8e75c9","f4ea7d5df644785bd9fbf419930cbaec118f0d8b4160037d2339b8e23c059e79",{"version":"c28e5baab1b53377c90d12970e207a2644bc3627840066449e37e2a59125d07e","affectsGlobalScope":true},"7a5459efa09ea82088234e6533a203d528c594b01787fb90fba148885a36e8b6","ae97e20f2e10dbeec193d6a2f9cd9a367a1e293e7d6b33b68bacea166afd7792","b3e30823f22a2185f7278f37e31358d5e2e69bd336d1035d2f5b8946928debf3","4ed10283814bb014a9d95959c5e1b5cd7a05c419dab36e28574bf2e0ca3e014c","bf73c576885408d4a176f44a9035d798827cc5020d58284cb18d7573430d9022","7ae078ca42a670445ae0c6a97c029cb83d143d62abd1730efb33f68f0b2c0e82",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true},"9f2edefec1509d5707b2de3a4d1f2af064ccfef02d050897d60adb5eead0c604","12eea70b5e11e924bb0543aea5eadc16ced318aa26001b453b0d561c2fd0bd1e","eafb9217aee34f5d7ebb42a5ed8f9b5881d2440c3d7b1d41667ce42806cf2cdd","1aee07ac9abb89ef59d2528541403f2a8f3c845167d7d2e3b4a44063ee29c395",{"version":"bd1a08e30569b0fb2f0b21035eb9b039871f68faa9b98accf847e9c878c5e0a9","affectsGlobalScope":true},"2a12d2da5ac4c4979401a3f6eaafa874747a37c365e4bc18aa2b171ae134d21b","002b837927b53f3714308ecd96f72ee8a053b8aeb28213d8ec6de23ed1608b66","1dc9c847473bb47279e398b22c740c83ea37a5c88bf66629666e3cf4c5b9f99c","a9e4a5a24bf2c44de4c98274975a1a705a0abbaad04df3557c2d3cd8b1727949","7185660ba7fe7c4221dcd443ffa32d1a786192548735692d98a40a90fa2867a4","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff",{"version":"806ef4cac3b3d9fa4a48d849c8e084d7c72fcd7b16d76e06049a9ed742ff79c0","affectsGlobalScope":true},"cfe724f7c694aab65a9bdd1acb05997848c504548c9d4c71645c187a091cfa2a","5f0ed51db151c2cdc4fa3bb0f44ce6066912ad001b607a34e65a96c52eb76248",{"version":"3345c276cab0e76dda86c0fb79104ff915a4580ba0f3e440870e183b1baec476","affectsGlobalScope":true},"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","51919fe45a014b1c55c55ad334585dcc31ed4c3f846d39b9f44b6efaafdebc3a","f52fbf64c7e480271a9096763c4882d356b05cab05bf56a64e68a95313cd2ce2","59bdb65f28d7ce52ccfc906e9aaf422f8b8534b2d21c32a27d7819be5ad81df7","1835259a20b9fa6b1882931375b69ae5978195f2b139b4e0db51ec8319261649","b52cd693219a63dd21282ac99a7bf55f77cbe8a91f097968856419cc2e05f017","3aff9c8c36192e46a84afe7b926136d520487155154ab9ba982a8b544ea8fc95","a880cf8d85af2e4189c709b0fea613741649c0e40fffb4360ec70762563d5de0","85bbf436a15bbeda4db888be3062d47f99c66fd05d7c50f0f6473a9151b6a070","9f9c49c95ecd25e0cb2587751925976cf64fd184714cb11e213749c80cf0f927","f0c75c08a71f9212c93a719a25fb0320d53f2e50ca89a812640e08f8ad8c408c",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"267af67ea520cabd16402522756b19ac63d9e2c1c86e7c4d1ddeb991c32e12c9","736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","4becf21ea223fcf15d615c1d63c8109008ec7e7967440a15a9efc18e2b13556b","2859adaa4f2db3d4f0fc37ad86f056045341496b58fba0dbc16a222f9d5d55b1","655ed305e8f4cb95d3f578040301a4e4d6ace112b1bd8824cd32bda66c3677d1","5df3727891d4d8dcab4907a9a63db570d84aeaa71ea7c63f5f35b7eb252d00aa",{"version":"5112775a666923f2cfd3e08952f4a033ec27161f26a1ed3b1927aa7e51560a26","signature":"c84cb2f982833799889ff51c2dd54ec955340252a35aab44c7368b68ef732db4"},{"version":"beaaede5931179b073587f42421e283aefd996d5daa0b8a779ada35d19591fd3","signature":"3e5524efb81f92290f947adb9b957fb8abaca112e5ea971e676274cbc77a3979"},{"version":"4406ca386c30ba4d10ab84eb53474a33e546fda72a79996ae091c844138d0b6d","signature":"4282fbb56c9fe0917a134db1290aa8cb66ae7d8bb56154e89f526586a127c602"},{"version":"cf6b206cb084136ad25a0fae891c9de76cc649f4a815954c64146155f1432eda","signature":"f6b468713a151a4474f32875e8c68899b6c70b92c810bbf92ee130854761f9c8"},{"version":"df442ad38147f1f0129550190d59647c482683c4d7c3b0f0536b5fef55581dad","signature":"f81d33c6212b6e3ee661ec6f887fc204ba4c58886e45d5023929523519b907e4"},"aeb0c410de176480f4aad97f3ed39a56f002f42a9091bf30e0d99140a197df13","a6aa424d301537bc8ef1f0ed50212b069bfbaeae8a301121d8318b1a23dd677c",{"version":"7fed6a1b5ab84aa48320ccf57659c272491246df945b44dc96243da0042bc96f","signature":"cc621183bbd8a693d29f2651fdb3f76629795b56824c22f0e4129fd872a8c7a6"},{"version":"65605fbe84646aced04589016f1e5d0598fb56933eed228ccb01c5a46d4f0f0f","signature":"68877b094684e79d6efedddd376eb2c32be26d0fd3c55d311ff18c1d2aea4046"},{"version":"b321d536d35df5acc5d364d9b5b12f851e47ca761e9f30d0dc1625c11dbe2571","signature":"c69feaf00deeecb68ff4ffa75d28c0a03ba91bb1174f109fc4dceb006a640865"},{"version":"b611c24379b8144251d3577e7ef324406b2a7b4b0a0ee5396ec595ca50727a10","signature":"08df5e5bea88cefa332e3d1b415cac9e399ccf909dc284b521fc9874404cc649"},{"version":"e4914b3f0ba0491c021b7a98edd0ca9816b974daa545a147e123c665a57a74f4","signature":"d264062dd25ca8548949b0f68e971101d66c1f10ba76e42ba0342a70d9c571ff"},{"version":"0bb3d3df48c23b4deb0928936334f2950a0afc0791a0fb74fbb96545a82f0dc5","signature":"3ee79852ef6532a60c9ca83ff8f5525a94b86db7ae1ed4b242fdebcfbb2ac650"},{"version":"5293523b93de6c8fcdfbc659332a33e52b68fe5dd8209ff941e7a71fabbb25c3","signature":"a121823ef8157b3c6eb51f2e7cd2381fb2e19a45f510cbc294cfcb986c9ec483"},{"version":"fef81333ec35b291ba36fecc4a3f9c381e7c68ff619e5c3fc34b6eeba5c4fbc6","signature":"2e8504662f68a3ce0790e1c2e35cddf46149241b1e9eb441e3386aa48b3ffe3c"},"051ae0b0bda811703875e6f2e466b9344cfe320b39087676327dc0c109f26d32",{"version":"94692d778551569848ba922cb5c565a6056339de29bd185f8a69737ddfd274db","signature":"0dcf9f2450fc9d888951b1bdb34f0b1f77747c0cd3fc7912ae38c750f7bc6913"},{"version":"a09df20a1afce3ebbded60a395e2f7d266840cf1d4405c304cde404128fbafca","signature":"156b4c6e0fedc512cfdc25a3de0a1acdb3f2f36c066d0ff401abb82bb4402675"},{"version":"87285abfae3de4afcc8a0c1420f8f192434094a7aa46c93a9cb1c892e7055b6c","signature":"fd2ddcc22cf2271617882dedbc7d05b0fd7aaeb19fd5e66b322a1c9523418d8c"},"98a598a2ecaaac68c293460c9c975190935eaad3b6191201e00daf64ae7c47da",{"version":"07d4c272773e4d21b1f1994eaf2e626b663f71732e64b8f6da24ec2253041324","signature":"f6ac0cc4953c2be80845d3fec7ef33019b9cec64aad354c3f6f5fe31eb651e22"},{"version":"f7615e2bc800768bdef7cb9e4013b1bb7dd5950414db742071659fff9886a350","signature":"15a23c0ba96ff223947a5cc6363260211f0ee0f6f229541a76df8ea0839346b2"},{"version":"1fe55b882cce38a7ab5aa2c1565b1224ce2118980bd7f11a62516ab81fa33510","signature":"9a00c2707323b806220877e6528108811ed92e580922d77a8ba1959b85fbb474"},{"version":"a2f307a7c48228e4ee9b0885f80821c0669d970111b61136670a010dff6b3f47","signature":"72f5b4c1258935505ab0ed283b8254b88ad493ea7e8b9f5ae6eb1287485dbdb2"},{"version":"335b641cfa263510a5907cc38e8e0c9a5da24e54dd0d84b5a395a37f2b424db3","signature":"f2270f14186fb9298c65d83f391db3cefc5e9c40bfae8007515176acc583e131"},{"version":"7d2193488a1a6b5e0a472272172a644c7eef1223e2fa9efe7e26d7ea476d2b85","signature":"43e818adf60173644896298637f47b01d5819b17eda46eaa32d0c7d64724d012"},{"version":"c1d0a166a0df968d3e6760e3d24c4ca64646548f4e22095800e5a80402ecf468","signature":"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"}],"options":{"declaration":true,"esModuleInterop":true,"inlineSourceMap":true,"module":99,"outDir":"./module","rootDir":"../src","target":99},"fileIdsList":[[50,93],[53,93],[54,59,93],[55,65,66,73,82,92,93],[55,56,65,73,93],[57,93],[58,59,66,74,93],[59,82,89,93],[60,62,65,73,93],[61,93],[62,63,93],[64,65,93],[65,93],[65,66,67,82,92,93],[65,66,67,82,93],[93],[68,73,82,92,93],[65,66,68,69,73,82,89,92,93],[68,70,82,89,92,93],[50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99],[65,71,93],[72,92,93],[62,65,73,82,93],[74,93],[75,93],[53,76,93],[77,91,93,97],[78,93],[79,93],[65,80,93],[80,81,93,95],[65,82,83,84,93],[82,84,93],[82,83,93],[85,93],[86,93],[65,87,88,93],[87,88,93],[59,73,89,93],[90,93],[73,91,93],[54,68,79,92,93],[59,93],[82,93,94],[93,95],[93,96],[54,59,65,67,76,82,92,93,95,97],[82,93,98],[93,103],[68,82,93,100],[93,100],[41,46,47,48,93],[46,93],[46,47,93],[93,111],[93,121,128,130],[66,93,120,127],[39,40,66,93,102,108,126,127,129],[39,40,93,108,109,119],[66,74,93,109,110,118],[66,75,93,110,114,115,116,117],[75,93,110,111,113],[75,79,93,110,111,113],[75,92,93],[93,126],[66,75,93,125],[44,93],[39,40,41,49,93,101,102,105,106],[93,104],[39,93],[39,40,41,44,45,66,74,93,102,106,107],[39,40,42,43,44,65,66,93,97],[66,93],[93,122],[66,75,93,122,123,124,126],[39,40,108,109,119],[109],[110],[126],[44],[40,41,106],[39],[39,40,41,102],[39,40,42,65],[122],[122,124,126]],"referencedMap":[[50,1],[51,1],[53,2],[54,3],[55,4],[56,5],[57,6],[58,7],[59,8],[60,9],[61,10],[62,11],[63,11],[64,12],[65,13],[66,14],[67,15],[52,16],[99,16],[68,17],[69,18],[70,19],[100,20],[71,21],[72,22],[73,23],[74,24],[75,25],[76,26],[77,27],[78,28],[79,29],[80,30],[81,31],[82,32],[84,33],[83,34],[85,35],[86,36],[87,37],[88,38],[89,39],[90,40],[91,41],[92,42],[93,43],[94,44],[95,45],[96,46],[97,47],[98,48],[104,49],[121,16],[103,16],[41,16],[101,50],[125,51],[49,52],[47,53],[48,54],[46,16],[112,55],[111,16],[9,16],[8,16],[2,16],[10,16],[11,16],[12,16],[13,16],[14,16],[15,16],[16,16],[17,16],[3,16],[4,16],[21,16],[18,16],[19,16],[20,16],[22,16],[23,16],[24,16],[5,16],[25,16],[26,16],[27,16],[28,16],[6,16],[29,16],[30,16],[31,16],[32,16],[7,16],[37,16],[33,16],[34,16],[35,16],[36,16],[1,16],[38,16],[131,56],[128,57],[130,58],[120,59],[119,60],[109,16],[118,61],[132,16],[114,62],[115,62],[116,62],[117,63],[110,16],[113,64],[129,65],[126,66],[106,67],[107,68],[102,16],[105,69],[42,70],[108,71],[40,16],[39,16],[45,72],[43,73],[44,16],[123,74],[124,74],[122,16],[127,75]],"exportedModulesMap":[[50,1],[51,1],[53,2],[54,3],[55,4],[56,5],[57,6],[58,7],[59,8],[60,9],[61,10],[62,11],[63,11],[64,12],[65,13],[66,14],[67,15],[52,16],[99,16],[68,17],[69,18],[70,19],[100,20],[71,21],[72,22],[73,23],[74,24],[75,25],[76,26],[77,27],[78,28],[79,29],[80,30],[81,31],[82,32],[84,33],[83,34],[85,35],[86,36],[87,37],[88,38],[89,39],[90,40],[91,41],[92,42],[93,43],[94,44],[95,45],[96,46],[97,47],[98,48],[104,49],[121,16],[103,16],[41,16],[101,50],[125,51],[49,52],[47,53],[48,54],[46,16],[112,55],[111,16],[9,16],[8,16],[2,16],[10,16],[11,16],[12,16],[13,16],[14,16],[15,16],[16,16],[17,16],[3,16],[4,16],[21,16],[18,16],[19,16],[20,16],[22,16],[23,16],[24,16],[5,16],[25,16],[26,16],[27,16],[28,16],[6,16],[29,16],[30,16],[31,16],[32,16],[7,16],[37,16],[33,16],[34,16],[35,16],[36,16],[1,16],[38,16],[120,76],[119,77],[118,78],[114,78],[115,78],[116,78],[117,78],[129,79],[106,80],[107,81],[102,16],[105,69],[42,82],[108,83],[45,84],[123,85],[124,85],[127,86]],"semanticDiagnosticsPerFile":[50,51,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,52,99,68,69,70,100,71,72,73,74,75,76,77,78,79,80,81,82,84,83,85,86,87,88,89,90,91,92,93,94,95,96,97,98,104,121,103,41,101,125,49,47,48,46,112,111,9,8,2,10,11,12,13,14,15,16,17,3,4,21,18,19,20,22,23,24,5,25,26,27,28,6,29,30,31,32,7,37,33,34,35,36,1,38,131,128,130,120,119,109,118,132,114,115,116,117,110,113,129,126,106,107,102,105,42,108,40,39,45,43,44,123,124,122,127]},"version":"4.5.4"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"program":{"fileNames":["../node_modules/typescript/lib/lib.es5.d.ts","../node_modules/typescript/lib/lib.es2015.d.ts","../node_modules/typescript/lib/lib.es2016.d.ts","../node_modules/typescript/lib/lib.es2017.d.ts","../node_modules/typescript/lib/lib.es2018.d.ts","../node_modules/typescript/lib/lib.es2019.d.ts","../node_modules/typescript/lib/lib.es2020.d.ts","../node_modules/typescript/lib/lib.es2015.core.d.ts","../node_modules/typescript/lib/lib.es2015.collection.d.ts","../node_modules/typescript/lib/lib.es2015.generator.d.ts","../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../node_modules/typescript/lib/lib.es2015.promise.d.ts","../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../node_modules/typescript/lib/lib.es2017.object.d.ts","../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2017.string.d.ts","../node_modules/typescript/lib/lib.es2017.intl.d.ts","../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../node_modules/typescript/lib/lib.es2018.intl.d.ts","../node_modules/typescript/lib/lib.es2018.promise.d.ts","../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../node_modules/typescript/lib/lib.es2019.array.d.ts","../node_modules/typescript/lib/lib.es2019.object.d.ts","../node_modules/typescript/lib/lib.es2019.string.d.ts","../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../node_modules/typescript/lib/lib.es2020.promise.d.ts","../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../node_modules/typescript/lib/lib.es2020.string.d.ts","../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../node_modules/typescript/lib/lib.es2020.intl.d.ts","../node_modules/typescript/lib/lib.esnext.intl.d.ts","../src/lib/scanner/ScannerTypes.ts","../src/lib/scanner/ScannerCfg.ts","../node_modules/eventemitter3/index.d.ts","../src/lib/scanner/Scannable/ScannableItem.ts","../src/lib/scanner/Winnower/WinnowerExtractor.ts","../src/lib/scanner/Winnower/WinnowerResponse.ts","../src/lib/scanner/Winnower/Winnower.ts","../node_modules/p-queue/dist/queue.d.ts","../node_modules/p-queue/dist/options.d.ts","../node_modules/p-queue/dist/priority-queue.d.ts","../node_modules/p-queue/dist/index.d.ts","../node_modules/@types/node/assert.d.ts","../node_modules/@types/node/assert/strict.d.ts","../node_modules/@types/node/globals.d.ts","../node_modules/@types/node/async_hooks.d.ts","../node_modules/@types/node/buffer.d.ts","../node_modules/@types/node/child_process.d.ts","../node_modules/@types/node/cluster.d.ts","../node_modules/@types/node/console.d.ts","../node_modules/@types/node/constants.d.ts","../node_modules/@types/node/crypto.d.ts","../node_modules/@types/node/dgram.d.ts","../node_modules/@types/node/diagnostics_channel.d.ts","../node_modules/@types/node/dns.d.ts","../node_modules/@types/node/dns/promises.d.ts","../node_modules/@types/node/domain.d.ts","../node_modules/@types/node/events.d.ts","../node_modules/@types/node/fs.d.ts","../node_modules/@types/node/fs/promises.d.ts","../node_modules/@types/node/http.d.ts","../node_modules/@types/node/http2.d.ts","../node_modules/@types/node/https.d.ts","../node_modules/@types/node/inspector.d.ts","../node_modules/@types/node/module.d.ts","../node_modules/@types/node/net.d.ts","../node_modules/@types/node/os.d.ts","../node_modules/@types/node/path.d.ts","../node_modules/@types/node/perf_hooks.d.ts","../node_modules/@types/node/process.d.ts","../node_modules/@types/node/punycode.d.ts","../node_modules/@types/node/querystring.d.ts","../node_modules/@types/node/readline.d.ts","../node_modules/@types/node/repl.d.ts","../node_modules/@types/node/stream.d.ts","../node_modules/@types/node/stream/promises.d.ts","../node_modules/@types/node/stream/consumers.d.ts","../node_modules/@types/node/stream/web.d.ts","../node_modules/@types/node/string_decoder.d.ts","../node_modules/@types/node/timers.d.ts","../node_modules/@types/node/timers/promises.d.ts","../node_modules/@types/node/tls.d.ts","../node_modules/@types/node/trace_events.d.ts","../node_modules/@types/node/tty.d.ts","../node_modules/@types/node/url.d.ts","../node_modules/@types/node/util.d.ts","../node_modules/@types/node/v8.d.ts","../node_modules/@types/node/vm.d.ts","../node_modules/@types/node/wasi.d.ts","../node_modules/@types/node/worker_threads.d.ts","../node_modules/@types/node/zlib.d.ts","../node_modules/@types/node/globals.global.d.ts","../node_modules/@types/node/index.d.ts","../node_modules/form-data/index.d.ts","../src/lib/scanner/Dispatcher/DispatcherResponse.ts","../node_modules/event-target-shim/index.d.ts","../node_modules/abort-controller/dist/abort-controller.d.ts","../src/lib/scanner/Dispatcher/GlobalControllerAborter.ts","../src/lib/scanner/Dispatcher/DispatchableItem.ts","../src/lib/scanner/Dispatcher/Dispatcher.ts","../src/lib/scanner/Scanner.ts","../src/lib/dependencies/DependencyTypes.ts","../src/lib/dependencies/parsers/types.ts","../node_modules/packageurl-js/src/package-url.d.ts","../node_modules/packageurl-js/index.d.ts","../src/lib/dependencies/parsers/utils.ts","../src/lib/dependencies/parsers/mavenParser.ts","../src/lib/dependencies/parsers/npmParser.ts","../src/lib/dependencies/parsers/pyParser.ts","../src/lib/dependencies/parsers/rubyParser.ts","../src/lib/dependencies/PurlGenerator.ts","../src/lib/dependencies/Dependency.ts","../src/index.ts","../node_modules/commander/typings/index.d.ts","../src/lib/tree/Node.ts","../src/lib/tree/File.ts","../src/lib/tree/Folder.ts","../node_modules/isbinaryfile/lib/index.d.ts","../src/lib/filters/filtering.ts","../src/lib/tree/Tree.ts","../src/commands/dep.ts","../src/lib/filters/defaultFilter.ts","../src/commands/scan.ts","../src/bin/cli-bin.ts","../src/lib/dependencies/parsers/golangParser.ts"],"fileInfos":[{"version":"89f78430e422a0f06d13019d60d5a45b37ec2d28e67eb647f73b1b0d19a46b72","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84","e21c071ca3e1b4a815d5f04a7475adcaeea5d64367e840dd0154096d705c3940",{"version":"d8996609230d17e90484a2dd58f22668f9a05a3bfe00bfb1d6271171e54a31fb","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"4378fc8122ec9d1a685b01eb66c46f62aba6b239ca7228bb6483bcf8259ee493","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"62d80405c46c3f4c527ee657ae9d43fda65a0bf582292429aea1e69144a522a6","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"1b3fe904465430e030c93239a348f05e1be80640d91f2f004c3512c2c2c89f34","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"d071129cba6a5f2700be09c86c07ad2791ab67d4e5ed1eb301d6746c62745ea4","affectsGlobalScope":true},{"version":"10bbdc1981b8d9310ee75bfac28ee0477bb2353e8529da8cff7cb26c409cb5e8","affectsGlobalScope":true},{"version":"268686210498352a10582ba01a1b8ad58031c7cfd6b114d5e831e1ddf946a449","signature":"8877230d1b56a97ebd7282ea7621719e8db67317b1d0849588d866474c8376fe"},{"version":"fb686f00627f38fbda020518f56cbbaf07d59987774fe0c7d675829ed1bf7af1","signature":"4a4631ad2efb3cf5bb6e8ef4a756608584a6ecfe3b173b1585aa23b6a25adb87"},"b80c780c52524beb13488942543972c8b0e54400e8b59cee0169f38d0fabb968",{"version":"ed9c15833062f96cc2978993220e3c2f34fede9f7b254265393514090e56f67a","signature":"341043ce470435f4e40cd238f03e5c68136989bf22c323ca2fdd70dd005af94d"},{"version":"62997e15d3e0c33183ea514470b8e825afe81ebd7b7571fbc44c1c7e1909e3b0","signature":"aa73c2e94477f081281097f22d238bf3866cd1a4dc80e60ee7ed81428077338d"},{"version":"e486326b6ec5d603c3e4bc709ad2839910146491687e329b5ba16090984e042a","signature":"abc4bffe3e126acb3a3d00afaa45439456180546456079957a4ef6ac90b6da58"},{"version":"c39964ea9bb7a843cda216fbbea30af91c286a68c4d11cf1ec32add1fa1b8ea5","signature":"1104fc0d505a444e11cd04e14218a891b560e2048b5a0ce17f81a64d4bb94790"},"a0a118c9a66853bb5ec086c878963b5d178ecb3eec72d75dc553d86adef67801","4bbf82fc081be97a72c494d1055e4f62ad743957cdc52b5a597b49d262ae5fd4","4583bf6ebd196f0c7e9aa26bfe5dfee09ea69eee63c2e97448518ea5ee17bc64","2b16288372f6367cdb13e77cbd0e667d5af3034a5b733a0daa98a111cfee227f","0cba3a5d7b81356222594442753cf90dd2892e5ccfe1d262aaca6896ba6c1380","a69c09dbea52352f479d3e7ac949fde3d17b195abe90b045d619f747b38d6d1a",{"version":"92d63add669d18ebc349efbacd88966d6f2ccdddfb1b880b2db98ae3aa7bf7c4","affectsGlobalScope":true},"422dbb183fdced59425ca072c8bd09efaa77ce4e2ab928ec0d8a1ce062d2a45a",{"version":"2a801b0322994c3dd7f0ef30265d19b3dd3bae6d793596879166ed6219c3da68","affectsGlobalScope":true},"1dab5ab6bcf11de47ab9db295df8c4f1d92ffa750e8f095e88c71ce4c3299628","f71f46ccd5a90566f0a37b25b23bc4684381ab2180bdf6733f4e6624474e1894",{"version":"54e65985a3ee3cec182e6a555e20974ea936fc8b8d1738c14e8ed8a42bd921d4","affectsGlobalScope":true},"82408ed3e959ddc60d3e9904481b5a8dc16469928257af22a3f7d1a3bc7fd8c4","bcc8caf03ee65fe8610d258752f255fbdddbb2e4de7b6c5628956a5a0d859ec8","34e5de87d983bc6aefef8b17658556e3157003e8d9555d3cb098c6bef0b5fbc8","cc0b61316c4f37393f1f9595e93b673f4184e9d07f4c127165a490ec4a928668","f27371653aded82b2b160f7a7033fb4a5b1534b6f6081ef7be1468f0f15327d3","c762cd6754b13a461c54b59d0ae0ab7aeef3c292c6cf889873f786ee4d8e75c9","f4ea7d5df644785bd9fbf419930cbaec118f0d8b4160037d2339b8e23c059e79",{"version":"c28e5baab1b53377c90d12970e207a2644bc3627840066449e37e2a59125d07e","affectsGlobalScope":true},"7a5459efa09ea82088234e6533a203d528c594b01787fb90fba148885a36e8b6","ae97e20f2e10dbeec193d6a2f9cd9a367a1e293e7d6b33b68bacea166afd7792","b3e30823f22a2185f7278f37e31358d5e2e69bd336d1035d2f5b8946928debf3","4ed10283814bb014a9d95959c5e1b5cd7a05c419dab36e28574bf2e0ca3e014c","bf73c576885408d4a176f44a9035d798827cc5020d58284cb18d7573430d9022","7ae078ca42a670445ae0c6a97c029cb83d143d62abd1730efb33f68f0b2c0e82",{"version":"e8b18c6385ff784228a6f369694fcf1a6b475355ba89090a88de13587a9391d5","affectsGlobalScope":true},"9f2edefec1509d5707b2de3a4d1f2af064ccfef02d050897d60adb5eead0c604","12eea70b5e11e924bb0543aea5eadc16ced318aa26001b453b0d561c2fd0bd1e","eafb9217aee34f5d7ebb42a5ed8f9b5881d2440c3d7b1d41667ce42806cf2cdd","1aee07ac9abb89ef59d2528541403f2a8f3c845167d7d2e3b4a44063ee29c395",{"version":"bd1a08e30569b0fb2f0b21035eb9b039871f68faa9b98accf847e9c878c5e0a9","affectsGlobalScope":true},"2a12d2da5ac4c4979401a3f6eaafa874747a37c365e4bc18aa2b171ae134d21b","002b837927b53f3714308ecd96f72ee8a053b8aeb28213d8ec6de23ed1608b66","1dc9c847473bb47279e398b22c740c83ea37a5c88bf66629666e3cf4c5b9f99c","a9e4a5a24bf2c44de4c98274975a1a705a0abbaad04df3557c2d3cd8b1727949","7185660ba7fe7c4221dcd443ffa32d1a786192548735692d98a40a90fa2867a4","1b952304137851e45bc009785de89ada562d9376177c97e37702e39e60c2f1ff",{"version":"806ef4cac3b3d9fa4a48d849c8e084d7c72fcd7b16d76e06049a9ed742ff79c0","affectsGlobalScope":true},"cfe724f7c694aab65a9bdd1acb05997848c504548c9d4c71645c187a091cfa2a","5f0ed51db151c2cdc4fa3bb0f44ce6066912ad001b607a34e65a96c52eb76248",{"version":"3345c276cab0e76dda86c0fb79104ff915a4580ba0f3e440870e183b1baec476","affectsGlobalScope":true},"664d8f2d59164f2e08c543981453893bc7e003e4dfd29651ce09db13e9457980","51919fe45a014b1c55c55ad334585dcc31ed4c3f846d39b9f44b6efaafdebc3a","f52fbf64c7e480271a9096763c4882d356b05cab05bf56a64e68a95313cd2ce2","59bdb65f28d7ce52ccfc906e9aaf422f8b8534b2d21c32a27d7819be5ad81df7","1835259a20b9fa6b1882931375b69ae5978195f2b139b4e0db51ec8319261649","b52cd693219a63dd21282ac99a7bf55f77cbe8a91f097968856419cc2e05f017","3aff9c8c36192e46a84afe7b926136d520487155154ab9ba982a8b544ea8fc95","a880cf8d85af2e4189c709b0fea613741649c0e40fffb4360ec70762563d5de0","85bbf436a15bbeda4db888be3062d47f99c66fd05d7c50f0f6473a9151b6a070","9f9c49c95ecd25e0cb2587751925976cf64fd184714cb11e213749c80cf0f927","f0c75c08a71f9212c93a719a25fb0320d53f2e50ca89a812640e08f8ad8c408c",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"267af67ea520cabd16402522756b19ac63d9e2c1c86e7c4d1ddeb991c32e12c9","736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","4becf21ea223fcf15d615c1d63c8109008ec7e7967440a15a9efc18e2b13556b","2859adaa4f2db3d4f0fc37ad86f056045341496b58fba0dbc16a222f9d5d55b1","655ed305e8f4cb95d3f578040301a4e4d6ace112b1bd8824cd32bda66c3677d1","5df3727891d4d8dcab4907a9a63db570d84aeaa71ea7c63f5f35b7eb252d00aa",{"version":"5112775a666923f2cfd3e08952f4a033ec27161f26a1ed3b1927aa7e51560a26","signature":"c84cb2f982833799889ff51c2dd54ec955340252a35aab44c7368b68ef732db4"},{"version":"beaaede5931179b073587f42421e283aefd996d5daa0b8a779ada35d19591fd3","signature":"3e5524efb81f92290f947adb9b957fb8abaca112e5ea971e676274cbc77a3979"},{"version":"4406ca386c30ba4d10ab84eb53474a33e546fda72a79996ae091c844138d0b6d","signature":"4282fbb56c9fe0917a134db1290aa8cb66ae7d8bb56154e89f526586a127c602"},{"version":"cf6b206cb084136ad25a0fae891c9de76cc649f4a815954c64146155f1432eda","signature":"f6b468713a151a4474f32875e8c68899b6c70b92c810bbf92ee130854761f9c8"},{"version":"df442ad38147f1f0129550190d59647c482683c4d7c3b0f0536b5fef55581dad","signature":"f81d33c6212b6e3ee661ec6f887fc204ba4c58886e45d5023929523519b907e4"},"aeb0c410de176480f4aad97f3ed39a56f002f42a9091bf30e0d99140a197df13","a6aa424d301537bc8ef1f0ed50212b069bfbaeae8a301121d8318b1a23dd677c",{"version":"7fed6a1b5ab84aa48320ccf57659c272491246df945b44dc96243da0042bc96f","signature":"cc621183bbd8a693d29f2651fdb3f76629795b56824c22f0e4129fd872a8c7a6"},{"version":"65605fbe84646aced04589016f1e5d0598fb56933eed228ccb01c5a46d4f0f0f","signature":"68877b094684e79d6efedddd376eb2c32be26d0fd3c55d311ff18c1d2aea4046"},{"version":"b321d536d35df5acc5d364d9b5b12f851e47ca761e9f30d0dc1625c11dbe2571","signature":"c69feaf00deeecb68ff4ffa75d28c0a03ba91bb1174f109fc4dceb006a640865"},{"version":"b611c24379b8144251d3577e7ef324406b2a7b4b0a0ee5396ec595ca50727a10","signature":"08df5e5bea88cefa332e3d1b415cac9e399ccf909dc284b521fc9874404cc649"},{"version":"e4914b3f0ba0491c021b7a98edd0ca9816b974daa545a147e123c665a57a74f4","signature":"d264062dd25ca8548949b0f68e971101d66c1f10ba76e42ba0342a70d9c571ff"},{"version":"0bb3d3df48c23b4deb0928936334f2950a0afc0791a0fb74fbb96545a82f0dc5","signature":"3ee79852ef6532a60c9ca83ff8f5525a94b86db7ae1ed4b242fdebcfbb2ac650"},{"version":"5293523b93de6c8fcdfbc659332a33e52b68fe5dd8209ff941e7a71fabbb25c3","signature":"a121823ef8157b3c6eb51f2e7cd2381fb2e19a45f510cbc294cfcb986c9ec483"},{"version":"fef81333ec35b291ba36fecc4a3f9c381e7c68ff619e5c3fc34b6eeba5c4fbc6","signature":"2e8504662f68a3ce0790e1c2e35cddf46149241b1e9eb441e3386aa48b3ffe3c"},"051ae0b0bda811703875e6f2e466b9344cfe320b39087676327dc0c109f26d32",{"version":"94692d778551569848ba922cb5c565a6056339de29bd185f8a69737ddfd274db","signature":"0dcf9f2450fc9d888951b1bdb34f0b1f77747c0cd3fc7912ae38c750f7bc6913"},{"version":"a09df20a1afce3ebbded60a395e2f7d266840cf1d4405c304cde404128fbafca","signature":"156b4c6e0fedc512cfdc25a3de0a1acdb3f2f36c066d0ff401abb82bb4402675"},{"version":"87285abfae3de4afcc8a0c1420f8f192434094a7aa46c93a9cb1c892e7055b6c","signature":"fd2ddcc22cf2271617882dedbc7d05b0fd7aaeb19fd5e66b322a1c9523418d8c"},"98a598a2ecaaac68c293460c9c975190935eaad3b6191201e00daf64ae7c47da",{"version":"07d4c272773e4d21b1f1994eaf2e626b663f71732e64b8f6da24ec2253041324","signature":"f6ac0cc4953c2be80845d3fec7ef33019b9cec64aad354c3f6f5fe31eb651e22"},{"version":"f7615e2bc800768bdef7cb9e4013b1bb7dd5950414db742071659fff9886a350","signature":"15a23c0ba96ff223947a5cc6363260211f0ee0f6f229541a76df8ea0839346b2"},{"version":"1fe55b882cce38a7ab5aa2c1565b1224ce2118980bd7f11a62516ab81fa33510","signature":"9a00c2707323b806220877e6528108811ed92e580922d77a8ba1959b85fbb474"},{"version":"a2f307a7c48228e4ee9b0885f80821c0669d970111b61136670a010dff6b3f47","signature":"72f5b4c1258935505ab0ed283b8254b88ad493ea7e8b9f5ae6eb1287485dbdb2"},{"version":"335b641cfa263510a5907cc38e8e0c9a5da24e54dd0d84b5a395a37f2b424db3","signature":"f2270f14186fb9298c65d83f391db3cefc5e9c40bfae8007515176acc583e131"},{"version":"7d2193488a1a6b5e0a472272172a644c7eef1223e2fa9efe7e26d7ea476d2b85","signature":"43e818adf60173644896298637f47b01d5819b17eda46eaa32d0c7d64724d012"},{"version":"c1d0a166a0df968d3e6760e3d24c4ca64646548f4e22095800e5a80402ecf468","signature":"e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855"}],"options":{"declaration":true,"esModuleInterop":true,"inlineSourceMap":true,"module":1,"outDir":"./main","rootDir":"../src","target":4},"fileIdsList":[[50,93],[53,93],[54,59,93],[55,65,66,73,82,92,93],[55,56,65,73,93],[57,93],[58,59,66,74,93],[59,82,89,93],[60,62,65,73,93],[61,93],[62,63,93],[64,65,93],[65,93],[65,66,67,82,92,93],[65,66,67,82,93],[93],[68,73,82,92,93],[65,66,68,69,73,82,89,92,93],[68,70,82,89,92,93],[50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99],[65,71,93],[72,92,93],[62,65,73,82,93],[74,93],[75,93],[53,76,93],[77,91,93,97],[78,93],[79,93],[65,80,93],[80,81,93,95],[65,82,83,84,93],[82,84,93],[82,83,93],[85,93],[86,93],[65,87,88,93],[87,88,93],[59,73,89,93],[90,93],[73,91,93],[54,68,79,92,93],[59,93],[82,93,94],[93,95],[93,96],[54,59,65,67,76,82,92,93,95,97],[82,93,98],[93,103],[68,82,93,100],[93,100],[41,46,47,48,93],[46,93],[46,47,93],[93,111],[93,121,128,130],[66,93,120,127],[39,40,66,93,102,108,126,127,129],[39,40,93,108,109,119],[66,74,93,109,110,118],[66,75,93,110,114,115,116,117],[75,93,110,111,113],[75,79,93,110,111,113],[75,92,93],[93,126],[66,75,93,125],[44,93],[39,40,41,49,93,101,102,105,106],[93,104],[39,93],[39,40,41,44,45,66,74,93,102,106,107],[39,40,42,43,44,65,66,93,97],[66,93],[93,122],[66,75,93,122,123,124,126],[39,40,108,109,119],[109],[110],[126],[44],[40,41,106],[39],[39,40,41,102],[39,40,42,65],[122],[122,124,126]],"referencedMap":[[50,1],[51,1],[53,2],[54,3],[55,4],[56,5],[57,6],[58,7],[59,8],[60,9],[61,10],[62,11],[63,11],[64,12],[65,13],[66,14],[67,15],[52,16],[99,16],[68,17],[69,18],[70,19],[100,20],[71,21],[72,22],[73,23],[74,24],[75,25],[76,26],[77,27],[78,28],[79,29],[80,30],[81,31],[82,32],[84,33],[83,34],[85,35],[86,36],[87,37],[88,38],[89,39],[90,40],[91,41],[92,42],[93,43],[94,44],[95,45],[96,46],[97,47],[98,48],[104,49],[121,16],[103,16],[41,16],[101,50],[125,51],[49,52],[47,53],[48,54],[46,16],[112,55],[111,16],[9,16],[8,16],[2,16],[10,16],[11,16],[12,16],[13,16],[14,16],[15,16],[16,16],[17,16],[3,16],[4,16],[21,16],[18,16],[19,16],[20,16],[22,16],[23,16],[24,16],[5,16],[25,16],[26,16],[27,16],[28,16],[6,16],[29,16],[30,16],[31,16],[32,16],[7,16],[37,16],[33,16],[34,16],[35,16],[36,16],[1,16],[38,16],[131,56],[128,57],[130,58],[120,59],[119,60],[109,16],[118,61],[132,16],[114,62],[115,62],[116,62],[117,63],[110,16],[113,64],[129,65],[126,66],[106,67],[107,68],[102,16],[105,69],[42,70],[108,71],[40,16],[39,16],[45,72],[43,73],[44,16],[123,74],[124,74],[122,16],[127,75]],"exportedModulesMap":[[50,1],[51,1],[53,2],[54,3],[55,4],[56,5],[57,6],[58,7],[59,8],[60,9],[61,10],[62,11],[63,11],[64,12],[65,13],[66,14],[67,15],[52,16],[99,16],[68,17],[69,18],[70,19],[100,20],[71,21],[72,22],[73,23],[74,24],[75,25],[76,26],[77,27],[78,28],[79,29],[80,30],[81,31],[82,32],[84,33],[83,34],[85,35],[86,36],[87,37],[88,38],[89,39],[90,40],[91,41],[92,42],[93,43],[94,44],[95,45],[96,46],[97,47],[98,48],[104,49],[121,16],[103,16],[41,16],[101,50],[125,51],[49,52],[47,53],[48,54],[46,16],[112,55],[111,16],[9,16],[8,16],[2,16],[10,16],[11,16],[12,16],[13,16],[14,16],[15,16],[16,16],[17,16],[3,16],[4,16],[21,16],[18,16],[19,16],[20,16],[22,16],[23,16],[24,16],[5,16],[25,16],[26,16],[27,16],[28,16],[6,16],[29,16],[30,16],[31,16],[32,16],[7,16],[37,16],[33,16],[34,16],[35,16],[36,16],[1,16],[38,16],[120,76],[119,77],[118,78],[114,78],[115,78],[116,78],[117,78],[129,79],[106,80],[107,81],[102,16],[105,69],[42,82],[108,83],[45,84],[123,85],[124,85],[127,86]],"semanticDiagnosticsPerFile":[50,51,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,52,99,68,69,70,100,71,72,73,74,75,76,77,78,79,80,81,82,84,83,85,86,87,88,89,90,91,92,93,94,95,96,97,98,104,121,103,41,101,125,49,47,48,46,112,111,9,8,2,10,11,12,13,14,15,16,17,3,4,21,18,19,20,22,23,24,5,25,26,27,28,6,29,30,31,32,7,37,33,34,35,36,1,38,131,128,130,120,119,109,118,132,114,115,116,117,110,113,129,126,106,107,102,105,42,108,40,39,45,43,44,123,124,122,127]},"version":"4.5.4"}
|
|
@@ -0,0 +1,203 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "Default",
|
|
3
|
+
"type": "BANNED",
|
|
4
|
+
"filters" : [
|
|
5
|
+
{ "condition": "=", "value" : "0", "ftype" : "SIZE", "scope": "FILE" },
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
{ "condition" : "starts", "value" : ".", "ftype" : "NAME" },
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
{ "condition" : "ends", "value" : ".egg-info", "ftype" : "NAME", "scope" : "FOLDER" },
|
|
12
|
+
|
|
13
|
+
{ "condition" : "fullmatch", "value" : "nbproject", "ftype" : "NAME", "scope" : "FOLDER" },
|
|
14
|
+
{ "condition" : "fullmatch", "value" : "nbbuild", "ftype" : "NAME", "scope" : "FOLDER" },
|
|
15
|
+
{ "condition" : "fullmatch", "value" : "nbdist", "ftype" : "NAME", "scope" : "FOLDER" },
|
|
16
|
+
{ "condition" : "fullmatch", "value" : "__pycache__", "ftype" : "NAME", "scope" : "FOLDER" },
|
|
17
|
+
{ "condition" : "fullmatch", "value" : "venv", "ftype" : "NAME", "scope" : "FOLDER" },
|
|
18
|
+
{ "condition" : "fullmatch", "value" : "_yardoc", "ftype" : "NAME", "scope" : "FOLDER" },
|
|
19
|
+
{ "condition" : "fullmatch", "value" : "eggs", "ftype" : "NAME", "scope" : "FOLDER" },
|
|
20
|
+
{ "condition" : "fullmatch", "value" : "wheels", "ftype" : "NAME", "scope" : "FOLDER" },
|
|
21
|
+
{ "condition" : "fullmatch", "value" : "htmlcov", "ftype" : "NAME", "scope" : "FOLDER" },
|
|
22
|
+
{ "condition" : "fullmatch", "value" : "__pypackages__", "ftype" : "NAME", "scope" : "FOLDER" },
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
{ "condition" : "fullmatch", "value" : "gradlew", "ftype" : "NAME", "scope" : "FILE" },
|
|
28
|
+
{ "condition" : "fullmatch", "value" : "gradlew.bat", "ftype" : "NAME", "scope" : "FILE" },
|
|
29
|
+
{ "condition" : "fullmatch", "value" : "mvnw", "ftype" : "NAME", "scope" : "FILE" },
|
|
30
|
+
{ "condition" : "fullmatch", "value" : "mvnw.cmd", "ftype" : "NAME", "scope" : "FILE" },
|
|
31
|
+
{ "condition" : "fullmatch", "value" : "gradle-wrapper.jar", "ftype" : "NAME", "scope" : "FILE" },
|
|
32
|
+
{ "condition" : "fullmatch", "value" : "maven-wrapper.jar", "ftype" : "NAME", "scope" : "FILE" },
|
|
33
|
+
{ "condition" : "fullmatch", "value" : "thumbs.db", "ftype" : "NAME", "scope" : "FILE" },
|
|
34
|
+
{ "condition" : "fullmatch", "value" : "babel.config.js", "ftype" : "NAME", "scope" : "FILE" },
|
|
35
|
+
{ "condition" : "fullmatch", "value" : "license.txt", "ftype" : "NAME", "scope" : "FILE" },
|
|
36
|
+
{ "condition" : "fullmatch", "value" : "license.md", "ftype" : "NAME", "scope" : "FILE" },
|
|
37
|
+
{ "condition" : "fullmatch", "value" : "copying.lib", "ftype" : "NAME", "scope" : "FILE" },
|
|
38
|
+
{ "condition" : "fullmatch", "value" : "makefile", "ftype" : "NAME", "scope" : "FILE" },
|
|
39
|
+
|
|
40
|
+
|
|
41
|
+
{ "condition" : "starts", "value" : ".asar", "ftype" : "NAME", "scope" : "FILE" },
|
|
42
|
+
|
|
43
|
+
|
|
44
|
+
{ "condition" : "ends", "value" : "news", "ftype" : "NAME", "scope" : "FILE" },
|
|
45
|
+
{ "condition" : "ends", "value" : "authors", "ftype" : "NAME", "scope" : "FILE" },
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
{ "condition" : "ends", "value" : "-doc", "ftype" : "NAME", "scope" : "FILE" },
|
|
49
|
+
{ "condition" : "ends", "value" : "changelog", "ftype" : "NAME", "scope" : "FILE" },
|
|
50
|
+
{ "condition" : "ends", "value" : "config", "ftype" : "NAME", "scope" : "FILE" },
|
|
51
|
+
{ "condition" : "ends", "value" : "copying", "ftype" : "NAME", "scope" : "FILE" },
|
|
52
|
+
{ "condition" : "ends", "value" : "license", "ftype" : "NAME", "scope" : "FILE" },
|
|
53
|
+
{ "condition" : "ends", "value" : "licenses", "ftype" : "NAME", "scope" : "FILE" },
|
|
54
|
+
{ "condition" : "ends", "value" : "notice", "ftype" : "NAME", "scope" : "FILE" },
|
|
55
|
+
{ "condition" : "ends", "value" : "readme", "ftype" : "NAME", "scope" : "FILE" },
|
|
56
|
+
{ "condition" : "ends", "value" : "swiftdoc", "ftype" : "NAME", "scope" : "FILE" },
|
|
57
|
+
{ "condition" : "ends", "value" : "texidoc", "ftype" : "NAME", "scope" : "FILE" },
|
|
58
|
+
{ "condition" : "ends", "value" : "todo", "ftype" : "NAME", "scope" : "FILE" },
|
|
59
|
+
{ "condition" : "ends", "value" : "version", "ftype" : "NAME", "scope" : "FILE" },
|
|
60
|
+
{ "condition" : "ends", "value" : "ignore", "ftype" : "NAME", "scope" : "FILE" },
|
|
61
|
+
{ "condition" : "ends", "value" : "manifest", "ftype" : "NAME", "scope" : "FILE" },
|
|
62
|
+
{ "condition" : "ends", "value" : "sqlite", "ftype" : "NAME", "scope" : "FILE" },
|
|
63
|
+
{ "condition" : "ends", "value" : "sqlite3", "ftype" : "NAME", "scope" : "FILE" },
|
|
64
|
+
|
|
65
|
+
{ "condition" : "=", "value" : ".1", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
66
|
+
{ "condition" : "=", "value" : ".2", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
67
|
+
{ "condition" : "=", "value" : ".3", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
68
|
+
{ "condition" : "=", "value" : ".4", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
69
|
+
{ "condition" : "=", "value" : ".5", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
70
|
+
{ "condition" : "=", "value" : ".6", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
71
|
+
{ "condition" : "=", "value" : ".7", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
72
|
+
{ "condition" : "=", "value" : ".8", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
73
|
+
{ "condition" : "=", "value" : ".9", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
74
|
+
{ "condition" : "=", "value" : ".ac", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
75
|
+
{ "condition" : "=", "value" : ".adoc", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
76
|
+
{ "condition" : "=", "value" : ".am", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
77
|
+
{ "condition" : "=", "value" : ".asciidoc", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
78
|
+
{ "condition" : "=", "value" : ".bmp", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
79
|
+
{ "condition" : "=", "value" : ".build", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
80
|
+
{ "condition" : "=", "value" : ".cfg", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
81
|
+
{ "condition" : "=", "value" : ".chm", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
82
|
+
{ "condition" : "=", "value" : ".class", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
83
|
+
{ "condition" : "=", "value" : ".cmake", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
84
|
+
{ "condition" : "=", "value" : ".cnf", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
85
|
+
{ "condition" : "=", "value" : ".conf", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
86
|
+
{ "condition" : "=", "value" : ".config", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
87
|
+
{ "condition" : "=", "value" : ".contributors", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
88
|
+
{ "condition" : "=", "value" : ".copying", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
89
|
+
{ "condition" : "=", "value" : ".crt", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
90
|
+
{ "condition" : "=", "value" : ".csproj", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
91
|
+
{ "condition" : "=", "value" : ".css", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
92
|
+
{ "condition" : "=", "value" : ".csv", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
93
|
+
{ "condition" : "=", "value" : ".dat", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
94
|
+
{ "condition" : "=", "value" : ".data", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
95
|
+
{ "condition" : "=", "value" : ".doc", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
96
|
+
{ "condition" : "=", "value" : ".docx", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
97
|
+
{ "condition" : "=", "value" : ".dtd", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
98
|
+
{ "condition" : "=", "value" : ".dts", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
99
|
+
{ "condition" : "=", "value" : ".iws", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
100
|
+
{ "condition" : "=", "value" : ".c9", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
101
|
+
{ "condition" : "=", "value" : ".c9revisions", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
102
|
+
{ "condition" : "=", "value" : ".dtsi", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
103
|
+
{ "condition" : "=", "value" : ".dump", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
104
|
+
{ "condition" : "=", "value" : ".eot", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
105
|
+
{ "condition" : "=", "value" : ".eps", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
106
|
+
{ "condition" : "=", "value" : ".geojson", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
107
|
+
{ "condition" : "=", "value" : ".gdoc", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
108
|
+
{ "condition" : "=", "value" : ".gif", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
109
|
+
{ "condition" : "=", "value" : ".glif", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
110
|
+
{ "condition" : "=", "value" : ".gmo", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
111
|
+
{ "condition" : "=", "value" : ".gradle", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
112
|
+
{ "condition" : "=", "value" : ".guess", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
113
|
+
{ "condition" : "=", "value" : ".hex", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
114
|
+
{ "condition" : "=", "value" : ".htm", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
115
|
+
{ "condition" : "=", "value" : ".html", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
116
|
+
{ "condition" : "=", "value" : ".ico", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
117
|
+
{ "condition" : "=", "value" : ".iml", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
118
|
+
{ "condition" : "=", "value" : ".in", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
119
|
+
{ "condition" : "=", "value" : ".inc", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
120
|
+
{ "condition" : "=", "value" : ".info", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
121
|
+
{ "condition" : "=", "value" : ".ini", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
122
|
+
{ "condition" : "=", "value" : ".ipynb", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
123
|
+
{ "condition" : "=", "value" : ".jpeg", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
124
|
+
{ "condition" : "=", "value" : ".jpg", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
125
|
+
{ "condition" : "=", "value" : ".json", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
126
|
+
{ "condition" : "=", "value" : ".jsonld", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
127
|
+
{ "condition" : "=", "value" : ".lock", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
128
|
+
{ "condition" : "=", "value" : ".log", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
129
|
+
{ "condition" : "=", "value" : ".m4", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
130
|
+
{ "condition" : "=", "value" : ".map", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
131
|
+
{ "condition" : "=", "value" : ".markdown", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
132
|
+
{ "condition" : "=", "value" : ".md", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
133
|
+
{ "condition" : "=", "value" : ".md5", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
134
|
+
{ "condition" : "=", "value" : ".meta", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
135
|
+
{ "condition" : "=", "value" : ".mk", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
136
|
+
{ "condition" : "=", "value" : ".mxml", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
137
|
+
{ "condition" : "=", "value" : ".o", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
138
|
+
{ "condition" : "=", "value" : ".otf", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
139
|
+
{ "condition" : "=", "value" : ".out", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
140
|
+
{ "condition" : "=", "value" : ".pbtxt", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
141
|
+
{ "condition" : "=", "value" : ".pdf", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
142
|
+
{ "condition" : "=", "value" : ".pem", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
143
|
+
{ "condition" : "=", "value" : ".phtml", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
144
|
+
{ "condition" : "=", "value" : ".plist", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
145
|
+
{ "condition" : "=", "value" : ".png", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
146
|
+
{ "condition" : "=", "value" : ".po", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
147
|
+
{ "condition" : "=", "value" : ".ppt", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
148
|
+
{ "condition" : "=", "value" : ".prefs", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
149
|
+
{ "condition" : "=", "value" : ".properties", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
150
|
+
{ "condition" : "=", "value" : ".pyc", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
151
|
+
{ "condition" : "=", "value" : ".qdoc", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
152
|
+
{ "condition" : "=", "value" : ".result", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
153
|
+
{ "condition" : "=", "value" : ".rgb", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
154
|
+
{ "condition" : "=", "value" : ".rst", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
155
|
+
{ "condition" : "=", "value" : ".scss", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
156
|
+
{ "condition" : "=", "value" : ".sha", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
157
|
+
{ "condition" : "=", "value" : ".sha1", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
158
|
+
{ "condition" : "=", "value" : ".sha2", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
159
|
+
{ "condition" : "=", "value" : ".sha256", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
160
|
+
{ "condition" : "=", "value" : ".sln", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
161
|
+
{ "condition" : "=", "value" : ".spec", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
162
|
+
{ "condition" : "=", "value" : ".sql", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
163
|
+
{ "condition" : "=", "value" : ".sub", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
164
|
+
{ "condition" : "=", "value" : ".svg", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
165
|
+
{ "condition" : "=", "value" : ".svn-base", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
166
|
+
{ "condition" : "=", "value" : ".tab", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
167
|
+
{ "condition" : "=", "value" : ".template", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
168
|
+
{ "condition" : "=", "value" : ".test", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
169
|
+
{ "condition" : "=", "value" : ".tex", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
170
|
+
{ "condition" : "=", "value" : ".tiff", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
171
|
+
{ "condition" : "=", "value" : ".toml", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
172
|
+
{ "condition" : "=", "value" : ".ttf", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
173
|
+
{ "condition" : "=", "value" : ".txt", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
174
|
+
{ "condition" : "=", "value" : ".utf-8", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
175
|
+
{ "condition" : "=", "value" : ".vim", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
176
|
+
{ "condition" : "=", "value" : ".wav", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
177
|
+
{ "condition" : "=", "value" : ".whl", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
178
|
+
{ "condition" : "=", "value" : ".woff", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
179
|
+
{ "condition" : "=", "value" : ".xht", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
180
|
+
{ "condition" : "=", "value" : ".xhtml", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
181
|
+
{ "condition" : "=", "value" : ".xls", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
182
|
+
{ "condition" : "=", "value" : ".xlsx", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
183
|
+
{ "condition" : "=", "value" : ".xml", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
184
|
+
{ "condition" : "=", "value" : ".xpm", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
185
|
+
{ "condition" : "=", "value" : ".xsd", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
186
|
+
{ "condition" : "=", "value" : ".xul", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
187
|
+
{ "condition" : "=", "value" : ".yaml", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
188
|
+
{ "condition" : "=", "value" : ".yml", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
189
|
+
{ "condition" : "=", "value" : ".wfp", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
190
|
+
{ "condition" : "=", "value" : ".editorconfig", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
191
|
+
{ "condition" : "=", "value" : ".dotcover", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
192
|
+
{ "condition" : "=", "value" : ".pid", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
193
|
+
{ "condition" : "=", "value" : ".lcov", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
194
|
+
{ "condition" : "=", "value" : ".egg", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
195
|
+
{ "condition" : "=", "value" : ".manifest", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
196
|
+
{ "condition" : "=", "value" : ".cache", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
197
|
+
{ "condition" : "=", "value" : ".coverage", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
198
|
+
{ "condition" : "=", "value" : ".cover", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
199
|
+
{ "condition" : "=", "value" : ".gem", "ftype" : "EXTENSION", "scope" : "FILE" },
|
|
200
|
+
{ "condition" : "=", "value" : ".lst", "ftype" : "EXTENSION", "scope" : "FILE" }
|
|
201
|
+
]
|
|
202
|
+
}
|
|
203
|
+
|