UNPKG

@salesforce/plugin-org

Version:

Commands to interact with Salesforce orgs

233 lines 7.82 kB
{ "name": "@salesforce/plugin-org", "description": "Commands to interact with Salesforce orgs", "version": "5.6.1", "author": "Salesforce", "bugs": "https://github.com/forcedotcom/cli/issues", "dependencies": { "@oclif/core": "^4.2.10", "@oclif/multi-stage-output": "^0.8.12", "@salesforce/core": "^8.9.0", "@salesforce/kit": "^3.2.3", "@salesforce/sf-plugins-core": "^12.2.1", "@salesforce/source-deploy-retrieve": "^12.19.0", "@salesforce/ts-types": "^2.0.12", "ansis": "^3.16.0", "change-case": "^5.4.4", "is-wsl": "^3.1.0", "open": "^10.1.0", "terminal-link": "^3.0.0" }, "devDependencies": { "@oclif/plugin-command-snapshot": "^5.2.38", "@salesforce/cli-plugins-testkit": "^5.3.39", "@salesforce/dev-scripts": "^10.2.12", "@salesforce/plugin-command-reference": "^3.1.49", "@salesforce/ts-sinon": "^1.4.30", "eslint-plugin-sf-plugin": "^1.20.19", "moment": "^2.30.1", "oclif": "^4.17.43", "ts-node": "^10.9.2", "typescript": "^5.8.3" }, "engines": { "node": ">=18.0.0" }, "files": [ "/lib", "/messages", "/oclif.manifest.json" ], "homepage": "https://github.com/salesforcecli/plugin-org", "keywords": [ "force", "salesforce", "salesforcedx", "sf", "sf-plugin", "sfdx", "sfdx-plugin" ], "license": "BSD-3-Clause", "oclif": { "commands": "./lib/commands", "bin": "sf", "devPlugins": [ "@oclif/plugin-help", "@oclif/plugin-command-snapshot", "@salesforce/plugin-command-reference" ], "topics": { "org": { "description": "Commands to create and manage orgs and scratch org users.", "subtopics": { "create": { "description": "Create scratch orgs, sandboxes, org shapes, and org snapshots." }, "resume": { "description": "Resume an org creation that was started asynchronously, timed out, or was interrupted." }, "list": { "description": "List metadata types that are relevant to the org." }, "delete": { "description": "Delete scratch orgs, sandboxes, org shapes, and org snapshots." }, "enable": { "description": "Enable source tracking in an org." }, "disable": { "description": "Disable source tracking in an org." } }, "external": true } }, "flexibleTaxonomy": true, "topicSeparator": " " }, "repository": "salesforcecli/plugin-org", "scripts": { "build": "wireit", "clean": "sf-clean", "clean-all": "sf-clean all", "compile": "wireit", "docs": "sf-docs", "format": "wireit", "link-check": "wireit", "lint": "wireit", "postpack": "sf-clean --ignore-signing-artifacts", "prepack": "sf-prepack", "prepare": "sf-install", "test": "wireit", "test:nuts": "nyc mocha \"./test/nut/*.nut.ts\" --slow 4500 --timeout 1200000 --parallel --jobs 2", "test:nuts:sandbox": "nyc mocha \"./test/**/*.sandboxNut.ts\" --slow 450000 --timeout 7200000 --parallel --jobs 5", "test:only": "wireit", "test:watch": "mocha --watch \"./test/**/*.test.ts\"", "version": "oclif readme" }, "publishConfig": { "access": "public" }, "wireit": { "build": { "dependencies": [ "compile", "lint" ] }, "compile": { "command": "tsc -p . --pretty --incremental", "files": [ "src/**/*.ts", "**/tsconfig.json", "messages/**" ], "output": [ "lib/**", "*.tsbuildinfo" ], "clean": "if-file-deleted" }, "format": { "command": "prettier --write \"+(src|test|schemas)/**/*.+(ts|js|json)|command-snapshot.json\"", "files": [ "src/**/*.ts", "test/**/*.ts", "schemas/**/*.json", "command-snapshot.json", ".prettier*" ], "output": [] }, "lint": { "command": "eslint src test --color --cache --cache-location .eslintcache", "files": [ "src/**/*.ts", "test/**/*.ts", "messages/**", "**/.eslint*", "**/tsconfig.json" ], "output": [] }, "test": { "dependencies": [ "test:compile", "test:only", "test:command-reference", "test:deprecation-policy", "lint", "test:json-schema", "link-check" ] }, "test:command-reference": { "command": "node --loader ts-node/esm --no-warnings=ExperimentalWarning \"./bin/dev.js\" commandreference:generate --erroronwarnings", "files": [ "src/**/*.ts", "messages/**", "package.json" ], "output": [ "tmp/root" ] }, "test:deprecation-policy": { "command": "node --loader ts-node/esm --no-warnings=ExperimentalWarning \"./bin/dev.js\" snapshot:compare", "files": [ "src/**/*.ts" ], "output": [], "dependencies": [ "compile" ] }, "test:json-schema": { "command": "node --loader ts-node/esm --no-warnings=ExperimentalWarning \"./bin/dev.js\" schema:compare", "files": [ "src/**/*.ts", "schemas" ], "output": [] }, "test:compile": { "command": "tsc -p \"./test\" --pretty", "files": [ "test/**/*.ts", "**/tsconfig.json" ], "output": [] }, "test:only": { "command": "nyc mocha \"test/**/*.test.ts\"", "env": { "FORCE_COLOR": "2" }, "files": [ "test/**/*.ts", "src/**/*.ts", "**/tsconfig.json", ".mocha*", "!*.nut.ts", ".nycrc" ], "output": [] }, "link-check": { "command": "node -e \"process.exit(process.env.CI ? 0 : 1)\" || linkinator \"**/*.md\" --skip \"CHANGELOG.md|node_modules|test/|confluence.internal.salesforce.com|my.salesforce.com|localhost|%s\" --markdown --retry --directory-listing --verbosity error", "files": [ "./*.md", "./!(CHANGELOG).md", "messages/**/*.md" ], "output": [] } }, "exports": "./lib/index.js", "type": "module", "sfdx": { "publicKeyUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-org/5.6.1.crt", "signatureUrl": "https://developer.salesforce.com/media/salesforce-cli/security/@salesforce/plugin-org/5.6.1.sig" } }