UNPKG

move-qcp

Version:
210 lines (209 loc) 4.92 kB
{ "name": "move-qcp", "description": "Deploy CPQ Quote Calculator Plugin", "version": "1.2.5", "dependencies": { "@oclif/core": "^2.11.1", "@salesforce/core": "^3.34.8", "@salesforce/kit": "^1.9.2", "@salesforce/sf-plugins-core": "^2.2.10", "jsforce": "^2.0.0-beta.21", "rollup": "^3.29.5", "terser": "^5.39.2", "tslib": "^2" }, "devDependencies": { "@oclif/test": "^2.3.17", "@salesforce/cli-plugins-testkit": "^3.3.3", "@salesforce/dev-config": "^3.1.0", "@salesforce/dev-scripts": "^4.3.0", "@salesforce/prettier-config": "^0.0.2", "@salesforce/ts-sinon": "^1.4.6", "@swc/core": "^1.3.19", "@typescript-eslint/eslint-plugin": "^5.36.1", "@typescript-eslint/parser": "^5.36.1", "chai": "^4.3.6", "eslint": "^8.21.0", "eslint-config-prettier": "^8.5.0", "eslint-config-salesforce": "^1.1.0", "eslint-config-salesforce-license": "^0.1.6", "eslint-config-salesforce-typescript": "^1.1.1", "eslint-plugin-header": "^3.0.0", "eslint-plugin-import": "2.26.0", "eslint-plugin-jsdoc": "^39.3.6", "eslint-plugin-sf-plugin": "^1.15.1", "husky": "^7.0.4", "mocha": "^9.2.2", "nyc": "^15.1.0", "oclif": "^3.8.1", "prettier": "^2.8.8", "pretty-quick": "^3.1.3", "shx": "0.3.4", "sinon": "10.0.0", "ts-node": "^10.9.1", "typescript": "^4.7.3", "wireit": "^0.9.5" }, "engines": { "node": ">=14.0.0" }, "homepage": "https://github.com/PreziosiRaffaele/move-qcp", "files": [ "/lib", "/messages", "/oclif.manifest.json" ], "keywords": [ "force", "salesforce", "sfdx", "salesforcedx", "sfdx-plugin", "sf-plugin", "sf", "cpq", "qcp" ], "license": "BSD-3-Clause", "main": "lib/index.js", "oclif": { "commands": "./lib/commands", "bin": "sf", "topicSeparator": " ", "devPlugins": [ "@oclif/plugin-help" ], "topics": { "cpq": { "description": "cpq commands", "subtopics": { "qcp": { "description": "qcp commands" } } } } }, "repository": "PreziosiRaffaele/move-qcp", "scripts": { "build": "wireit", "clean": "sf-clean", "clean-all": "sf-clean all", "clean:lib": "shx rm -rf lib && shx rm -rf coverage && shx rm -rf .nyc_output && shx rm -f oclif.manifest.json", "compile": "wireit", "docs": "sf-docs", "format": "wireit", "lint": "wireit", "postpack": "shx rm -f oclif.manifest.json", "prepack": "sf-prepack", "test": "wireit", "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": "nyc mocha \"test/**/*.test.ts\"", "env": { "FORCE_COLOR": "2" }, "files": [ "test/**/*.ts", "src/**/*.ts", "**/tsconfig.json", ".mocha*", "!*.nut.ts", ".nycrc" ], "output": [] }, "test:command-reference": { "command": "\"./bin/dev\" commandreference:generate --erroronwarnings", "files": [ "src/**/*.ts", "messages/**", "package.json" ], "output": [ "tmp/root" ] }, "test:deprecation-policy": { "command": "\"./bin/dev\" snapshot:compare", "files": [ "src/**/*.ts" ], "output": [], "dependencies": [ "compile" ] }, "test:json-schema": { "command": "\"./bin/dev\" schema:compare", "files": [ "src/**/*.ts", "schemas" ], "output": [] } }, "author": "Raffaele Preziosi" }