-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
215 lines (214 loc) · 28.1 KB
/
package.json
File metadata and controls
215 lines (214 loc) · 28.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
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
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
{
"name": "arktaint",
"version": "1.0.0",
"description": "Taint analysis framework for HarmonyOS",
"main": "out/src/index.js",
"scripts": {
"build": "tsc",
"entry": "npm run test:entry-model",
"arktaint-bench": "npm run test:arktaint-bench",
"tests": "npm run verify && npm run arktaint-bench",
"test": "jest",
"test:context": "node out/tests/datasets/test_context.js",
"test:full": "node out/tests/datasets/test_full_dataset.js",
"test:suite:synthetic-baseline": "npm run test:context && npm run test:full",
"test:manifest": "node out/tests/datasets/test_dataset_by_manifest.js",
"test:dev": "node out/tests/datasets/test_dataset_by_manifest.js --manifest tests/manifests/datasets/dev.list --k 1",
"test:holdout": "node out/tests/datasets/test_dataset_by_manifest.js --manifest tests/manifests/datasets/holdout.list --k 1",
"test:metamorphic": "node out/tests/metamorphic/test_metamorphic.js --manifest tests/manifests/metamorphic/metamorphic_seed.list --k 1",
"test:metamorphic:v2": "node out/tests/metamorphic/test_metamorphic_v2.js --manifest tests/manifests/metamorphic/metamorphic_seed_v2.list --sourceDir tests/demo/metamorphic_seed_v2 --k 1",
"test:metamorphic:v3": "node out/tests/metamorphic/test_metamorphic_v3.js --manifest tests/manifests/metamorphic/metamorphic_seed_v3.list --sourceDir tests/demo/metamorphic_seed_v2 --k 1",
"test:smoke": "node out/tests/real_projects/test_real_project_smoke.js --manifest tests/manifests/real_projects/smoke_projects.json --k 1 --maxEntries 12",
"test:smoke:core": "node out/tests/real_projects/test_real_project_smoke.js --manifest tests/manifests/real_projects/smoke_projects_core.json --k 1 --maxEntries 12 --outputDir tmp/test_runs/real_projects/smoke_core/latest",
"test:smoke:external": "node out/tests/real_projects/test_real_project_smoke.js --manifest tests/manifests/real_projects/smoke_projects_external.json --k 1 --maxEntries 40 --outputDir tmp/test_runs/real_projects/smoke_external/latest",
"test:project-rule-delta": "node out/tests/real_projects/test_project_rule_unknown_reduction.js",
"test:smoke:label": "node out/tests/real_projects/test_smoke_labeling.js --report tmp/test_runs/real_projects/smoke_labeling/latest/smoke_report.json --outputDir tmp/test_runs/real_projects/smoke_labeling/latest --sampleSize 20",
"test:smoke:sink-inventory-alignment": "node out/tests/real_projects/test_smoke_sink_inventory_alignment.js",
"test:rules": "node out/tests/rules/test_rules_schema.js --ruleCatalog src/models",
"test:rules-highrisk": "node out/tests/rules/test_rule_validator_high_risk.js",
"test:rules:layers": "node out/tests/rules/test_rule_layering.js",
"test:rule-governance": "node out/tests/rules/test_rule_bundle_kind_layout.js && node out/tests/rules/test_rule_project_pack_loading.js && node out/tests/analyze/test_analyze_rule_pack_flags.js && node out/tests/rules/test_rule_governance_contract.js && node out/tests/rules/test_rule_governance_framework_autoinference.js && node out/tests/rules/test_rule_governance_hidden_fields.js && node out/tests/rules/test_rule_governance_normalization.js && node out/tests/rules/test_rule_governance_runtime_ingress.js && node out/tests/rules/test_framework_sink_family_contract.js && node out/tests/rules/test_framework_sanitizer_family_contract.js && node out/tests/rules/test_sink_inventory_boundary.js",
"test:rule-loader-diagnostics": "node out/tests/rules/test_rule_loader_diagnostics.js",
"test:callee-resolver": "node out/tests/language/test_callee_resolver.js",
"test:algorithm-validation": "node out/tests/runtime/test_algorithm_validation.js",
"test:layer-dependency-gate": "node out/tests/runtime/test_layer_dependency_gate.js",
"test:module-runtime": "node out/tests/runtime/test_module_runtime.js",
"test:engine-plugin-runtime": "node out/tests/runtime/test_engine_plugin_runtime.js",
"test:formal-suite-helper": "node out/tests/runtime/test_formal_test_suite_helper.js",
"test:ordinary-language-core": "node out/tests/language/test_ordinary_language_core.js",
"test:ordinary-hapbench-pack-a": "node out/tests/benchmark/test_ordinary_hapbench_pack_a.js",
"test:arkmain-hapbench-pack-a": "node out/tests/benchmark/test_arkmain_hapbench_pack_a.js",
"test:object-path-matrix": "node out/tests/precision/test_object_path_precision_matrix.js",
"test:object-update-precision": "node out/tests/precision/test_object_update_precision.js",
"test:object-container-bridge": "node out/tests/precision/test_object_container_bridge_precision.js",
"test:array-precision-matrix": "node out/tests/precision/test_array_precision_matrix.js",
"test:container-model-precision": "node out/tests/precision/test_container_model_precision.js",
"test:result-container-precision": "node out/tests/precision/test_result_container_precision.js",
"test:object-container-invalidation": "node out/tests/precision/test_object_container_invalidation_precision.js",
"test:capability-pack-b": "node out/tests/capability/test_capability_pack_b_panel.js",
"test:capability-pack-c": "node out/tests/capability/test_capability_pack_c_panel.js",
"test:capability-pack-d": "node out/tests/capability/test_capability_pack_d_panel.js",
"test:capability-pack-e": "node out/tests/capability/test_capability_pack_e_panel.js",
"test:entry-model:necessity": "node out/tests/entry_model/test_entry_model_arkmain_necessity.js",
"test:execution-handoff-contract": "node out/tests/execution_handoff/test_execution_handoff_contract.js",
"test:execution-handoff-audit": "node out/tests/execution_handoff/test_execution_handoff_contract_audit.js",
"test:execution-handoff-proof": "node out/tests/execution_handoff/test_execution_handoff_contract_proof.js",
"test:execution-handoff-coverage": "node out/tests/execution_handoff/test_execution_handoff_contract_coverage.js",
"test:execution-handoff-boundaries": "node out/tests/execution_handoff/test_execution_handoff_contract_boundaries.js",
"test:execution-handoff-inference": "node out/tests/execution_handoff/test_execution_handoff_contract_inference.js",
"test:execution-handoff-ablation": "node out/tests/execution_handoff/test_execution_handoff_contract_ablation.js",
"test:execution-handoff-necessity": "node out/tests/execution_handoff/test_execution_handoff_necessity.js",
"test:execution-handoff-env-ports": "node out/tests/execution_handoff/test_execution_handoff_env_ports.js",
"test:execution-handoff-unification-audit": "node out/tests/execution_handoff/test_execution_handoff_unification_audit.js",
"test:execution-handoff-unification-semantic-audit": "node out/tests/execution_handoff/test_execution_handoff_unification_semantic_audit.js",
"test:execution-handoff-semantic-core": "node out/tests/execution_handoff/test_execution_handoff_semantic_core.js && node out/tests/execution_handoff/test_execution_handoff_module_declared_binding.js",
"test:execution-handoff-semantic-algorithm": "node out/tests/execution_handoff/test_execution_handoff_semantic_algorithm.js",
"test:execution-handoff-declarative-binding": "node out/tests/execution_handoff/test_execution_handoff_declarative_binding.js",
"test:execution-handoff-module-declared-binding": "node out/tests/execution_handoff/test_execution_handoff_module_declared_binding.js",
"test:extension-loader-soft-warnings": "node out/tests/runtime/test_extension_loader_soft_warnings.js",
"test:complex-calls": "node out/tests/language/test_complex_calls.js --sourceDir tests/demo/complex_calls --k 1",
"test:library-semantics": "node out/tests/datasets/test_dataset_by_manifest.js --manifest tests/manifests/datasets/library_semantics.list --targetDir tests/demo/library_semantic_regression --k 1",
"test:source-sink-rules": "node out/tests/rules/test_source_sink_rules.js --sourceDir tests/demo/context_sensitive --kernelRule tests/rules/minimal.rules.json --project tests/rules/source_sink_only.rules.json --k 1",
"test:harmony-lifecycle": "node out/tests/harmony/test_harmony_lifecycle.js --sourceDir tests/demo/harmony_lifecycle --kernelRule tests/rules/minimal.rules.json --ruleCatalog src/models --project tests/rules/harmony_lifecycle_sink_only.rules.json --k 1",
"test:harmony-appstorage": "node out/tests/harmony/test_harmony_appstorage.js --sourceDir tests/demo/harmony_appstorage --kernelRule tests/rules/minimal.rules.json --project tests/rules/harmony_appstorage.rules.json --k 1",
"test:harmony-appstorage:baseline": "node out/tests/harmony/test_harmony_appstorage.js --sourceDir tests/demo/harmony_appstorage --kernelRule tests/rules/minimal.rules.json --project tests/rules/harmony_appstorage.rules.json --k 1 --disable-module",
"test:harmony-localstorage": "node out/tests/harmony/test_harmony_appstorage.js --sourceDir tests/demo/harmony_localstorage --kernelRule tests/rules/minimal.rules.json --project tests/rules/harmony_localstorage.rules.json --k 1",
"test:harmony-localstorage:baseline": "node out/tests/harmony/test_harmony_appstorage.js --sourceDir tests/demo/harmony_localstorage --kernelRule tests/rules/minimal.rules.json --project tests/rules/harmony_localstorage.rules.json --k 1 --disable-module",
"test:harmony-persistentstorage": "node out/tests/harmony/test_harmony_appstorage.js --sourceDir tests/demo/harmony_persistentstorage --kernelRule tests/rules/minimal.rules.json --project tests/rules/harmony_persistentstorage.rules.json --k 1",
"test:harmony-persistentstorage:baseline": "node out/tests/harmony/test_harmony_appstorage.js --sourceDir tests/demo/harmony_persistentstorage --kernelRule tests/rules/minimal.rules.json --project tests/rules/harmony_persistentstorage.rules.json --k 1 --disable-module",
"test:harmony-event-activation": "node out/tests/harmony/test_harmony_event_activation.js --sourceDir tests/demo/harmony_event_activation --kernelRule tests/rules/minimal.rules.json --project tests/rules/harmony_event_activation.rules.json --k 1",
"test:harmony-emitter": "node out/tests/harmony/test_harmony_emitter.js --sourceDir tests/demo/harmony_emitter --kernelRule tests/rules/minimal.rules.json --project tests/rules/harmony_emitter.rules.json --k 1",
"test:harmony-state": "node out/tests/harmony/test_harmony_state_mgmt.js --sourceDir tests/demo/harmony_state_mgmt --kernelRule tests/rules/minimal.rules.json --project tests/rules/harmony_state_mgmt.rules.json --k 1",
"test:harmony-state:baseline": "node out/tests/harmony/test_harmony_state_mgmt.js --sourceDir tests/demo/harmony_state_mgmt --kernelRule tests/rules/minimal.rules.json --project tests/rules/harmony_state_mgmt.rules.json --k 1 --disable-module",
"test:harmony-e2e": "node out/tests/harmony/test_harmony_e2e.js --sourceDir tests/demo/harmony_e2e --kernelRule tests/rules/minimal.rules.json --project tests/rules/harmony_e2e.rules.json --k 1",
"test:harmony-router-bridge": "node out/tests/harmony/test_harmony_router_bridge.js --sourceDir tests/demo/harmony_router_bridge --kernelRule tests/rules/minimal.rules.json --project tests/rules/harmony_router_bridge.rules.json --k 1",
"test:harmony-router-crossfile": "node out/tests/harmony/test_harmony_router_bridge.js --sourceDir tests/demo/harmony_router_crossfile --kernelRule tests/rules/minimal.rules.json --project tests/rules/harmony_router_crossfile.rules.json --k 1",
"test:harmony-modeling": "node out/tests/harmony/test_harmony_modeling_benchmark.js",
"test:entry-model": "npm run test:entry-model:pure && npm run test:entry-model:provenance && npm run test:entry-model:override-decorator && npm run test:entry-model:arkmain-core",
"test:entry-model:pure": "node out/tests/entry_model/test_entry_model_rule_hygiene.js && node out/tests/entry_model/test_entry_model_pure_entry_oracle.js && node out/tests/entry_model/test_entry_model_taxonomy.js",
"test:entry-model:arkmain-core": "node out/tests/entry_model/test_entry_model_ark_main.js && node out/tests/entry_model/test_entry_model_ark_main_fact_boundary.js && node out/tests/entry_model/test_entry_model_ark_main_root_independence.js && node out/tests/entry_model/test_entry_model_ark_main_graph.js && node out/tests/entry_model/test_entry_model_ark_main_scheduler.js && node out/tests/entry_model/test_entry_model_framework_callback_boundary.js && node out/tests/entry_model/test_entry_model_contract_core.js && node out/tests/entry_model/test_entry_model_arkmain_necessity.js && node out/tests/entry_model/test_entry_model_ordering_contract.js && node out/tests/entry_model/test_entry_model_ark_main_explainability.js && node out/tests/entry_model/test_entry_model_explicit_entry_scope.js",
"test:entry-model:arkmain": "node out/tests/entry_model/test_entry_model_ark_main.js",
"test:entry-model:arkmain-graph": "node out/tests/entry_model/test_entry_model_ark_main_graph.js",
"test:entry-model:arkmain-scheduler": "node out/tests/entry_model/test_entry_model_ark_main_scheduler.js",
"test:entry-model:framework-callback-boundary": "node out/tests/entry_model/test_entry_model_framework_callback_boundary.js",
"test:entry-model:contract-core": "node out/tests/entry_model/test_entry_model_contract_core.js",
"test:entry-model:ordering-contract": "node out/tests/entry_model/test_entry_model_ordering_contract.js",
"test:entry-model:arkmain-explain": "node out/tests/entry_model/test_entry_model_ark_main_explainability.js",
"test:entry-model:explicit-scope": "node out/tests/entry_model/test_entry_model_explicit_entry_scope.js",
"test:entry-model:explicit-scope-callable-gate": "node out/tests/entry_model/test_explicit_entry_scope_callable_gate.js",
"test:entry-model:rule-hygiene": "node out/tests/entry_model/test_entry_model_rule_hygiene.js",
"test:entry-model:pure-oracle": "node out/tests/entry_model/test_entry_model_pure_entry_oracle.js",
"test:entry-model:taxonomy": "node out/tests/entry_model/test_entry_model_taxonomy.js",
"test:entry-model:provenance": "node out/tests/entry_model/test_entry_model_owner_discovery.js && node out/tests/entry_model/test_entry_model_option_callback_provenance.js && node out/tests/entry_model/test_entry_model_owner_identity.js && node out/tests/entry_model/test_entry_model_contract_lifecycle.js && node out/tests/entry_model/test_entry_model_owner_family_contract_plane.js",
"test:entry-model:contract-lifecycle": "node out/tests/entry_model/test_entry_model_contract_lifecycle.js",
"test:entry-model:owner-family-contract-plane": "node out/tests/entry_model/test_entry_model_owner_family_contract_plane.js",
"test:entry-model:owner-identity": "node out/tests/entry_model/test_entry_model_owner_identity.js",
"test:entry-model:lifecycle-contract-driven": "node out/tests/harmony/test_harmony_lifecycle.js",
"test:entry-model:provenance-coverage": "node out/tests/entry_model/test_entry_model_callback_provenance_coverage.js",
"test:entry-model:channel-provenance": "node out/tests/entry_model/test_entry_model_channel_provenance_probe.js",
"test:entry-model:override-decorator": "node out/tests/entry_model/test_entry_model_override_decorator_probe.js",
"test:entry-model:owner-discovery": "node out/tests/entry_model/test_entry_model_owner_discovery.js",
"test:entry-model:no-unknown-callback-sources": "node out/tests/entry_model/test_entry_model_no_unknown_callback_sources.js",
"test:harmony-bench": "node --max-old-space-size=4096 out/tests/harmony/test_harmony_bench.js",
"test:harmony-bench:rule-contract": "node out/tests/harmony/test_harmony_bench_rule_contract.js",
"test:hapbench": "node --max-old-space-size=4096 out/tests/benchmark/test_hapbench.js",
"test:arktaint-bench": "node --max-old-space-size=4096 out/tests/benchmark/test_arktaint_bench.js --manifest tests/manifests/benchmarks/arktaint_bench.json",
"test:arktaint-bench:runner-contract": "node out/tests/benchmark/test_arktaint_bench_runner_contract.js",
"test:harmony-bench:gate:c12-c14": "node --max-old-space-size=4096 out/tests/harmony/test_harmony_bench.js --manifest tests/benchmark/HarmonyBench/gates/c12_c14_gate.manifest.json --k 1 --outputDir tmp/test_runs/benchmark/harmony_bench_gate_c12_c14/latest",
"generate:harmony-metamorphic": "node out/tools/harmony_metamorphic_generator.js --manifest tests/benchmark/HarmonyBench/manifest.json --outputRoot tmp/test_runs/benchmark/harmony_bench_metamorphic_generator/latest/generated --groups A,B --categoryRegex \"^C[1-5]_\"",
"test:harmony-bench:metamorphic:quick": "node --max-old-space-size=4096 out/tests/harmony/test_harmony_bench_metamorphic.js --manifest tests/benchmark/HarmonyBench/manifest.json --outputDir tmp/test_runs/benchmark/harmony_bench_metamorphic/latest --docs docs/harmony_bench_metamorphic.md --k 1 --groups A,B --maxCasesPerCategory 1 --categoryRegex \"^C[1-5]_\"",
"test:harmony-bench:metamorphic": "node --max-old-space-size=4096 out/tests/harmony/test_harmony_bench_metamorphic.js --manifest tests/benchmark/HarmonyBench/manifest.json --outputDir tmp/test_runs/benchmark/harmony_bench_metamorphic/latest --docs docs/harmony_bench_metamorphic.md --k 1 --groups A,B --categoryRegex \"^C[1-5]_\"",
"test:source-precision": "node out/tests/rules/test_source_precision.js --sourceDir tests/demo/rule_precision_source --kernelRule tests/rules/minimal.rules.json --project tests/rules/source_precision.rules.json --k 1",
"test:source-exact": "node out/tests/rules/test_source_exact_match.js",
"test:sink-precision": "node out/tests/rules/test_sink_precision.js --sourceDir tests/demo/rule_precision_sink --kernelRule tests/rules/minimal.rules.json --project tests/rules/sink_precision.rules.json --k 1",
"test:sink-exact": "node out/tests/rules/test_sink_exact_match.js",
"test:sanitizer-guard": "node out/tests/rules/test_sanitizer_guard.js --sourceDir tests/demo/rule_precision_sanitizer --kernelRule tests/rules/minimal.rules.json --project tests/rules/sanitizer_guard.rules.json --k 1",
"test:transfer-precision": "node out/tests/transfer/test_transfer_precision.js --sourceDir tests/demo/rule_precision_transfer --kernelRule tests/rules/minimal.rules.json --project tests/rules/transfer_precision.rules.json --k 1",
"test:transfer-exact": "node out/tests/transfer/test_transfer_exact_match.js",
"test:transfer-priority": "node out/tests/transfer/test_transfer_priority.js --sourceDir tests/demo/transfer_priority --kernelRule tests/rules/minimal.rules.json --project tests/rules/transfer_priority.rules.json --k 1",
"test:transfer-tierc": "node out/tests/transfer/test_transfer_tier_c_guard.js",
"test:transfer-ptr": "node out/tests/transfer/test_transfer_ptr_callee_resolution.js",
"test:transfer-structural-perf": "node out/tests/transfer/test_transfer_structural_callee_perf.js",
"test:transfer-overload": "node out/tests/transfer/test_transfer_overload_conflicts.js --sourceDir tests/demo/transfer_overload_conflicts --kernelRule tests/rules/minimal.rules.json --project tests/rules/transfer_overload_conflicts.rules.json --k 1",
"test:transfer-rules": "node out/tests/transfer/test_transfer_rules.js --sourceDir tests/demo/rule_transfer --project tests/rules/transfer_only.rules.json --k 1",
"test:transfer-cache-reuse": "node out/tests/transfer/test_transfer_cache_reuse.js --sourceDir tests/demo/rule_transfer_variants --kernelRule tests/rules/minimal.rules.json --project tests/rules/transfer_variants.rules.json --k 1 --maxCases 4",
"test:analyze-incremental": "node out/tests/analyze/test_analyze_incremental.js",
"test:analyze-parallel": "node out/tests/analyze/test_analyze_parallel_deterministic.js",
"test:analyze-report-mode": "node out/tests/analyze/test_analyze_report_mode.js",
"test:analyze-guidance": "node out/tests/analyze/test_analyze_guidance.js",
"test:analyze-auto-model": "node out/tests/analyze/test_analyze_auto_model.js",
"test:analyze-module-cli": "node out/tests/analyze/test_analyze_module_cli.js",
"test:analyze-module-callback-api": "node out/tests/analyze/test_analyze_module_callback_api.js",
"test:analyze-module-field-bridge-api": "node out/tests/analyze/test_analyze_module_field_bridge_api.js",
"test:analyze-module-keyed-channel-api": "node out/tests/analyze/test_analyze_module_keyed_channel_api.js",
"test:analyze-module-inspection-cli": "node out/tests/analyze/test_analyze_module_inspection_cli.js",
"test:analyze-plugin-inspection-cli": "node out/tests/analyze/test_analyze_plugin_inspection_cli.js",
"test:analyze-engine-plugin-cli": "node out/tests/analyze/test_analyze_engine_plugin_cli.js",
"test:analyze-extension-diagnostics": "node out/tests/analyze/test_analyze_extension_diagnostics_cli.js",
"test:analyze-top-level-diagnostics": "node out/tests/analyze/test_analyze_top_level_diagnostics_cli.js",
"test:analyze-invalid-flags": "node out/tests/analyze/test_analyze_invalid_flags.js",
"test:no-candidate-project-pool": "node out/tests/analyze/test_no_candidate_project_candidate_pool.js",
"test:analyze-single-command": "node out/tests/analyze/test_analyze_single_command.js",
"test:suite:diagnostics": "npm run test:rule-loader-diagnostics && npm run test:module-runtime && npm run test:engine-plugin-runtime && npm run test:formal-suite-helper && npm run test:extension-loader-soft-warnings && npm run test:analyze-module-cli && npm run test:analyze-module-callback-api && npm run test:analyze-module-field-bridge-api && npm run test:analyze-module-keyed-channel-api && npm run test:analyze-module-inspection-cli && npm run test:analyze-plugin-inspection-cli && npm run test:analyze-engine-plugin-cli && npm run test:analyze-extension-diagnostics && npm run test:analyze-top-level-diagnostics",
"test:diagnostics": "npm run test:suite:diagnostics",
"test:suite:analyze-core": "npm run test:analyze-single-command && npm run test:analyze-guidance && npm run test:analyze-auto-model && npm run test:analyze-report-mode && npm run test:analyze-incremental && npm run test:analyze-invalid-flags && npm run test:no-candidate-project-pool",
"test:suite:entry-model-core": "npm run test:entry-model:pure && npm run test:entry-model:arkmain-core && npm run test:entry-model:provenance",
"test:archive:detect-perf": "node out/tests/archive/test_phase66_detect_perf.js --rounds 5 --threshold 0.2 --k 1 --outputDir tmp/test_runs/archive/phase66_detect_perf/latest --tag round1",
"test:analyze-perf-profile": "node out/tests/analyze/test_analyze_perf_profile.js --rounds 3 --threshold 0.3 --k 1 --maxEntries 12 --outputDir tmp/test_runs/perf/analyze_perf_profile/latest --tag round1",
"test:analyze-perf-compare-arktan": "node out/tests/analyze/test_analyze_perf_compare_arktan.js --rounds 5 --k 1 --outputDir tmp/test_runs/perf/analyze_perf_compare_arktan/latest --arktanRoot ../Arktan --tag round1 --runStability",
"test:transfer-compare-arktan": "node out/tests/transfer/test_transfer_compare_arktan.js --rounds 5 --k 1 --outputDir tmp/test_runs/compare/transfer_compare_arktan/latest --arktanRoot ../Arktan --runStability",
"test:senior-compare-arktan": "node out/tests/compare/test_senior_compare_arktan.js --mode strict --rounds 1 --k 1 --outputDir tmp/test_runs/compare/senior_compare_arktan/latest --arktanRoot ../Arktan --sourceRoot tests/demo/senior_full",
"test:archive:gap-list": "node out/tests/archive/test_phase55_gap_list.js --report tmp/test_runs/compare/transfer_compare_arktan/latest/compare_report.json --output tmp/test_runs/compare/transfer_compare_arktan/latest/gap_list.md",
"verify:generalization": "npm run build && node out/tests/compare/test_verify_generalization.js",
"verify:synthetic-baseline": "npm run build && npm run test:suite:synthetic-baseline",
"test:adaptive": "node out/tests/language/test_adaptive_context.js",
"debug:archive:phase35": "node out/tests/archive/test_phase35_debug.js",
"analyze": "node out/cli/analyze.js",
"analyze:auto": "node out/cli/analyze.js --autoModel",
"llm": "node out/cli/llm.js",
"analyze:demo": "node out/cli/analyze.js --repo tests/demo/complex_calls --sourceDir . --profile default --maxEntries 12 --outputDir output/runs/analyze/demo_complex_calls/latest",
"test:semanticflow:session-cache": "node out/tests/runtime/test_semanticflow_llm_session_cache.js",
"test:semanticflow:cli": "node out/tests/runtime/testSemanticFlowCli.js",
"test:semanticflow:auto": "node out/tests/runtime/testSemanticFlowAuto.js",
"test:llm-cli": "node out/tests/runtime/test_llm_cli.js",
"test:llm-endpoint-auth": "node out/tests/runtime/test_llm_endpoint_auth.js",
"test:llm-min-interval": "node out/tests/runtime/test_llm_min_interval.js",
"test:llm-retry-429": "node out/tests/runtime/test_llm_retry_429.js",
"test:llm-url-compat": "node out/tests/runtime/test_llm_url_compat.js",
"test:semanticflow-llm-shorthand": "node out/tests/runtime/test_semanticflow_llm_shorthand.js",
"dump:invoke-signatures": "node out/cli/dump_invoke_signatures.js",
"test:sdk-signature-probe": "npm run dump:invoke-signatures -- --repo tests/demo/sdk_signature_probe --sourceDir . --output tmp/test_runs/probe/sdk_signature_probe/latest/signatures.json",
"tmp:report": "node out/tools/test_workspace_maintenance.js --mode=report",
"tmp:clean:stale": "node out/tools/test_workspace_maintenance.js --mode=clean-stale",
"test:framework-probe-coverage": "npm run build && node out/tests/rules/test_framework_probe_coverage.js",
"test:framework-source-ownership": "node out/tests/rules/test_framework_source_ownership.js",
"test:framework-callback-source-family-contract": "node out/tests/rules/test_framework_callback_source_family_contract.js",
"test:framework-api-source-family-contract": "node out/tests/rules/test_framework_api_source_family_contract.js",
"test:framework-api-source-unknown-sdk-resolution": "node out/tests/rules/test_framework_api_source_unknown_sdk_resolution.js",
"test:framework-sink-family-contract": "node out/tests/rules/test_framework_sink_family_contract.js",
"test:framework-sanitizer-family-contract": "node out/tests/rules/test_framework_sanitizer_family_contract.js",
"test:sink-inventory-boundary": "node out/tests/rules/test_sink_inventory_boundary.js",
"test:sink-inventory-scoring-contract": "node out/tests/rules/test_sink_inventory_scoring_contract.js",
"test:framework-source-exactness-gate": "node out/tests/rules/test_framework_api_source_exactness_gate.js",
"verify": "npm run build && npm run test:layer-dependency-gate && npm run test:rule-governance && npm run test:module-runtime && npm run test:engine-plugin-runtime && npm run test:algorithm-validation && npm run test:ordinary-language-core && npm run test:capability-pack-b && npm run test:capability-pack-c && npm run test:capability-pack-d && npm run test:capability-pack-e && npm run test:execution-handoff-necessity && npm run test:entry-model && npm run test:analyze-single-command && npm run test:analyze-guidance && npm run test:analyze-module-cli && npm run test:analyze-module-inspection-cli && npm run test:analyze-plugin-inspection-cli && npm run test:analyze-engine-plugin-cli && npm run test:analyze-incremental && npm run test:analyze-invalid-flags",
"verify:dev": "npm run verify && npm run test:smoke",
"clean": "rimraf out"
},
"author": "",
"license": "Apache-2.0",
"devDependencies": {
"@types/node": "^18.15.11",
"@typescript-eslint/eslint-plugin": "^5.59.0",
"@typescript-eslint/parser": "^5.59.0",
"eslint": "^8.38.0",
"jest": "^29.5.0",
"rimraf": "^5.0.0",
"ts-jest": "^29.1.0",
"typescript": "^5.0.4"
},
"dependencies": {
"commander": "^10.0.0",
"log4js": "^6.9.1",
"pdf-parse": "^2.4.5"
}
}