-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathdeno.json
More file actions
34 lines (34 loc) · 1.97 KB
/
deno.json
File metadata and controls
34 lines (34 loc) · 1.97 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
{
"name": "ld-migration-scripts",
"version": "3.0.2",
"exports": "./src/scripts/launchdarkly-migrations/workflow.ts",
"description": "LaunchDarkly Project Migration Scripts - Support for LD-to-LD migrations and third-party flag imports",
"license": "Apache-2.0",
"deno": ">=2.0.0",
"compilerOptions": {
"lib": [
"deno.window",
"dom",
"esnext"
],
"strict": true
},
"importMap": "./config/import_map.json",
"tasks": {
"workflow": "deno run --allow-net --allow-read --allow-write --allow-run src/scripts/launchdarkly-migrations/workflow.ts",
"workflow:full": "deno task workflow -- -f examples/workflow-full.yaml",
"workflow:incremental": "deno task workflow -- -f examples/workflow-extract-migrate-incremental.yaml",
"source-from-ld": "deno run --allow-net --allow-read --allow-write src/scripts/launchdarkly-migrations/source_from_ld.ts",
"map-members": "deno run --allow-net --allow-read --allow-write src/scripts/launchdarkly-migrations/map_members_between_ld_instances.ts",
"update-maintainers": "deno run --allow-read --allow-write src/scripts/update_maintainers.ts",
"migrate": "deno run --allow-net --allow-read --allow-write src/scripts/launchdarkly-migrations/migrate_between_ld_instances.ts",
"revert": "deno run --allow-net --allow-read --allow-write src/scripts/launchdarkly-migrations/revert_migration.ts",
"estimate-migration-time": "deno run --allow-net --allow-read --allow-write src/scripts/launchdarkly-migrations/estimate_migration_time.ts",
"import-flags": "deno run --allow-net --allow-read --allow-write src/scripts/third-party-migrations/import_flags_from_external.ts",
"version:show": "./scripts/check-version.sh",
"version:bump:patch": "./scripts/bump-version.sh patch",
"version:bump:minor": "./scripts/bump-version.sh minor",
"version:bump:major": "./scripts/bump-version.sh major",
"diff": "deno run --allow-net --allow-env --allow-read src/scripts/diff-payload/diff_payload.ts"
}
}