@jayree/sfdx-plugin-org
Version:
A Salesforce CLI plugin containing commands to configure State and Country/Territory Picklists and other org settings.
230 lines (229 loc) • 5.75 kB
JSON
{
"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.103",
"author": "jayree",
"type": "module",
"bugs": "https://github.com/jayree/sfdx-plugin-org/issues",
"dependencies": {
"@jayree/changelog": "^1.2.7",
"@jsforce/jsforce-node": "^3.7.0",
"@listr2/prompt-adapter-enquirer": "^2.0.12",
"@oclif/core": "^4.2.10",
"@salesforce/core": "^8.8.6",
"@salesforce/sf-plugins-core": "^11.3.12",
"@salesforce/source-deploy-retrieve": "^12.18.0",
"@salesforce/ts-types": "^2.0.12",
"chalk": "^5.4.1",
"cli-progress": "^3.12.0",
"cli-truncate": "^4.0.0",
"debug": "^4.4.0",
"enquirer": "^2.4.1",
"fs-extra": "^11.3.0",
"is-docker": "^3.0.0",
"is-wsl": "^3.1.0",
"listr2": "^8.2.5",
"log-update": "^6.0.0",
"playwright-chromium": "^1.51.1",
"tabletojson": "4.1.5",
"tslib": "^2.8.1",
"wrap-ansi": "^9.0.0"
},
"devDependencies": {
"@oclif/plugin-command-snapshot": "^5.2.37",
"@oclif/plugin-help": "^6.2.27",
"@salesforce/dev-scripts": "^10.2.12",
"@salesforce/ts-sinon": "^1.4.30",
"@types/cli-progress": "^3.11.6",
"@types/debug": "^4.1.12",
"@types/fs-extra": "^11.0.4",
"@types/wrap-ansi": "^8.1.0",
"c8": "^10.1.3",
"eslint-config-oclif": "^5.2",
"eslint-plugin-prettier": "^5.2.5",
"eslint-plugin-sf-plugin": "^1.20.17",
"is-ci": "^4.1.0",
"oclif": "^4.17.37",
"patch-package": "^8.0.0",
"prettier": "^3.5.3",
"pretty-quick": "^4.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.8.2"
},
"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": "BSD-3-Clause",
"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",
"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": []
}
}
}