UNPKG

sfdx-jayree

Version:

A Salesforce CLI plugin containing commands and hooks for Salesforce Application Lifecycle Management tasks.

187 lines (186 loc) 4.33 kB
{ "name": "sfdx-jayree", "description": "A Salesforce CLI plugin containing commands and hooks for Salesforce Application Lifecycle Management tasks.", "version": "4.8.140", "author": "jayree <jayree.git@icloud.com>", "bugs": "https://github.com/jayree/sfdx-jayree-plugin/issues", "type": "module", "dependencies": { "@jayree/sfdx-plugin-manifest": "^4.0.21", "@jayree/sfdx-plugin-org": "^1.2.120", "@jayree/sfdx-plugin-prettier": "^1.3.118", "@jayree/sfdx-plugin-source": "^1.3.116" }, "devDependencies": { "@oclif/plugin-help": "^6.2.28", "@salesforce/dev-scripts": "^10.2.12", "@salesforce/ts-sinon": "^1.4.30", "c8": "^10.1.3", "eslint-plugin-prettier": "^5.4.1", "eslint-plugin-sf-plugin": "^1.20.25", "nock": "^14.0.5", "oclif": "^4.18.1", "patch-package": "^8.0.0", "pinst": "^3.0.0", "prettier": "^3.5.3", "pretty-quick": "^4.2.2", "ts-node": "^10.9.2", "typescript": "^5.8.3" }, "engines": { "node": ">=16.0.0" }, "files": [ "/CHANGELOG.md", "/config", "/lib", "/messages", "/npm-shrinkwrap.json", "/oclif.lock", "/oclif.manifest.json" ], "homepage": "https://github.com/jayree/sfdx-jayree-plugin", "keywords": [ "ALM", "country", "state", "picklist", "git", "diff", "deployment", "full", "partial", "automation", "change set", "manifest", "package xml", "package description", "configure", "streaming", "open", "retrieve", "fix", "hook", "flow test coverage", "lightning sync status", "sfdx", "sfdx-plugin" ], "license": "BSD-3-Clause", "oclif": { "commands": "./lib/commands", "bin": "sfdx", "devPlugins": [ "@oclif/plugin-help" ], "plugins": [ "@jayree/sfdx-plugin-prettier", "@jayree/sfdx-plugin-manifest", "@jayree/sfdx-plugin-source", "@jayree/sfdx-plugin-org" ], "info": { "releasenotes": { "distTagUrl": "https://registry.npmjs.org/-/package/sfdx-jayree/dist-tags", "releaseNotesPath": "https://github.com/jayree/sfdx-jayree-plugin/tree/main", "releaseNotesFilename": "CHANGELOG.md" } }, "topicSeparator": " " }, "repository": "jayree/sfdx-jayree-plugin", "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" }, "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", "lint" ] }, "test:compile": { "command": "tsc -p \"./test\" --pretty", "files": [ "test/**/*.ts", "**/tsconfig.json" ], "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": [] } } }