UNPKG

@jayree/sfdx-plugin-org

Version:

A Salesforce CLI plugin containing commands to configure State and Country/Territory Picklists and other org settings.

231 lines (230 loc) 5.82 kB
{ "name": "@jayree/sfdx-plugin-org", "description": "A Salesforce CLI plugin containing commands to configure State and Country/Territory Picklists and other org settings.", "version": "1.2.174", "author": "jayree", "type": "module", "bugs": "https://github.com/jayree/sfdx-plugin-org/issues", "dependencies": { "@jayree/changelog": "^1.2.33", "@jsforce/jsforce-node": "^3.10.15", "@listr2/prompt-adapter-enquirer": "^3.0.5", "@oclif/core": "^4.11.1", "@salesforce/core": "^8.31.0", "@salesforce/sf-plugins-core": "^12.2.22", "@salesforce/source-deploy-retrieve": "^12.36.0", "@salesforce/ts-types": "^2.0.12", "chalk": "^5.6.2", "cli-progress": "^3.12.0", "cli-truncate": "^5.2.0", "debug": "^4.4.3", "enquirer": "^2.4.1", "fs-extra": "^11.3.5", "is-docker": "^4.0.0", "is-wsl": "^3.1.1", "listr2": "^9.0.5", "log-update": "^7.2.0", "playwright-chromium": "^1.60.0", "tabletojson": "4.1.10", "tslib": "^2.8.1", "wrap-ansi": "^9.0.2" }, "devDependencies": { "@oclif/plugin-command-snapshot": "^5.3.22", "@oclif/plugin-help": "^6.2.49", "@salesforce/dev-scripts": "^11.0.4", "@salesforce/ts-sinon": "^1.4.34", "@types/cli-progress": "^3.11.6", "@types/debug": "^4.1.13", "@types/fs-extra": "^11.0.4", "@types/wrap-ansi": "^8.1.0", "c8": "^11.0.0", "eslint-config-oclif": "^5.2", "eslint-plugin-prettier": "^5.5.6", "eslint-plugin-sf-plugin": "^1.20.33", "is-ci": "^4.1.0", "oclif": "^4.23.8", "patch-package": "^8.0.1", "prettier": "^3.8.3", "pretty-quick": "^4.2.2", "ts-node": "^10.9.2", "typescript": "^5.9.3" }, "engines": { "node": ">=16.0.0" }, "files": [ "/CHANGELOG.md", "/lib", "/messages", "/npm-shrinkwrap.json", "/oclif.lock", "/oclif.manifest.json", "/schemas" ], "homepage": "https://github.com/jayree/sfdx-plugin-org", "keywords": [ "org", "configure", "state", "country", "territory", "picklists", "sfdx", "sfdx-plugin" ], "license": "Apache-2.0", "oclif": { "commands": "./lib/commands", "bin": "sfdx", "hooks": { "update": "./lib/hooks/changelog" }, "topics": { "jayree": { "description": "manifest, source, and org automation toolset", "subtopics": { "org": { "description": "Commands to manage orgs.", "subtopics": { "configure": { "description": "Manage org settings and state and country picklist values." } } } } } }, "devPlugins": [ "@oclif/plugin-help", "@oclif/plugin-command-snapshot" ], "info": { "releasenotes": { "distTagUrl": "https://registry.npmjs.org/-/package/@jayree/sfdx-plugin-org/dist-tags", "releaseNotesPath": "https://github.com/jayree/sfdx-plugin-org/tree/main", "releaseNotesFilename": "CHANGELOG.md" } }, "topicSeparator": " " }, "repository": "jayree/sfdx-plugin-org", "scripts": { "build": "wireit", "clean": "sf-clean", "clean-all": "sf-clean all", "compile": "wireit", "docs": "sf-docs", "fix-license": "eslint src test --fix --rule \"header/header: [2]\"", "format": "wireit", "lint": "wireit", "postpack": "sf-clean --ignore-signing-artifacts", "prepack": "sf-prepack", "prepare": "patch-package && sf-install", "test": "wireit", "test:only": "wireit", "version": "oclif readme --no-aliases" }, "publishConfig": { "access": "public" }, "release": { "branches": [ "main", "next" ] }, "wireit": { "build": { "dependencies": [ "compile", "lint" ] }, "compile": { "command": "tsc --build --pretty", "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 --color --cache --cache-location .eslintcache .", "files": [ "src/**/*.ts", "test/**/*.ts", "messages/**", "**/.eslint*", "**/tsconfig.json" ], "output": [] }, "test": { "dependencies": [ "test:compile", "test:only", "test:deprecation-policy", "lint", "test:json-schema" ] }, "test:compile": { "command": "tsc -p \"./test\" --pretty", "files": [ "test/**/*.ts", "**/tsconfig.json" ], "output": [] }, "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:only": { "command": "c8 mocha \"test/**/*.test.ts\"", "env": { "FORCE_COLOR": "2" }, "files": [ "test/**/*.ts", "src/**/*.ts", "**/tsconfig.json", ".mocha*", "!*.nut.ts", ".nycrc" ], "output": [] } } }