UNPKG

sf-package-combiner

Version:

Combine multiple Salesforce manifest files (package.xml) into 1 file for deployments.

214 lines (213 loc) 5.22 kB
{ "name": "sf-package-combiner", "description": "Combine multiple Salesforce manifest files (package.xml) into 1 file for deployments.", "version": "2.3.9", "dependencies": { "@oclif/core": "^4", "@salesforce/core": "^8", "@salesforce/sf-plugins-core": "^12", "@salesforce/source-deploy-retrieve": "^12.19.10", "async": "^3.2.6", "fast-xml-parser": "^4.5.3" }, "devDependencies": { "@oclif/plugin-command-snapshot": "^5.3.2", "@salesforce/cli-plugins-testkit": "^5.3.39", "@salesforce/dev-scripts": "^10", "@types/async": "^3.2.24", "@types/jest": "^30.0.0", "@types/mocha": "^10.0.9", "@types/node": "18", "eslint-plugin-sf-plugin": "^1.20.26", "husky": "^9.1.7", "jest": "^30.0.3", "mocha": "^10.8.2", "nyc": "^17.1.0", "oclif": "^4.20.1", "ts-jest": "^29.4.0", "ts-jest-mock-import-meta": "^1.3.0", "ts-node": "^10.9.2", "typescript": "^5.8.2", "wireit": "^0.14.12" }, "engines": { "node": ">=20.0.0" }, "files": [ "/lib", "/messages", "/oclif.manifest.json", "/oclif.lock", "/CHANGELOG.md" ], "keywords": [ "force", "salesforce", "salesforcedx", "sf", "sf-plugin", "sfdx", "sfdx-plugin", "package.xml", "manifest", "combiner", "deployment" ], "license": "MIT", "oclif": { "commands": "./lib/commands", "bin": "sf", "topicSeparator": " ", "devPlugins": [ "@oclif/plugin-help" ], "topics": { "sfpc": { "description": "description for sfpc" } }, "flexibleTaxonomy": true }, "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": "husky install", "test": "wireit", "test:nuts": "oclif manifest && jest --testMatch \"**/*.nut.ts\"", "test:only": "wireit", "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:compile": { "command": "tsc -p \"./test\" --pretty", "files": [ "test/**/*.ts", "**/tsconfig.json" ], "output": [] }, "test": { "dependencies": [ "test:compile", "test:only", "lint" ] }, "test:only": { "command": "jest --coverage", "env": { "FORCE_COLOR": "2" }, "files": [ "test/**/*.ts", "src/**/*.ts", "**/tsconfig.json", ".mocha*", "!*.nut.ts", ".nycrc" ], "output": [] }, "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": [] }, "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|%s\" --markdown --retry --directory-listing --verbosity error", "files": [ "./*.md", "./!(CHANGELOG).md", "messages/**/*.md" ], "output": [] } }, "exports": "./lib/index.js", "type": "module", "author": "Matt Carvin", "packageManager": "yarn@1.22.21", "repository": { "type": "git", "url": "git+https://github.com/mcarvin8/sf-package-combiner.git" }, "bugs": { "url": "https://github.com/mcarvin8/sf-package-combiner/issues" } }