@oclif/plugin-warn-if-update-available
Version:
warns if there is a newer version of CLI released
67 lines • 1.87 kB
JSON
{
"name": "@oclif/plugin-warn-if-update-available",
"description": "warns if there is a newer version of CLI released",
"version": "2.1.0",
"author": "Salesforce",
"bugs": "https://github.com/oclif/plugin-warn-if-update-available/issues",
"dependencies": {
"@oclif/core": "^2.15.0",
"chalk": "^4.1.0",
"debug": "^4.1.0",
"http-call": "^5.2.2",
"lodash.template": "^4.5.0",
"semver": "^7.5.4"
},
"devDependencies": {
"@oclif/test": "^1.2.8",
"@types/chai": "^4.3.5",
"@types/lodash.template": "^4.5.1",
"@types/mocha": "^8.0.0",
"@types/node": "^14.18.58",
"@types/semver": "^7.5.1",
"chai": "^4.3.8",
"eslint": "^7.3.1",
"eslint-config-oclif": "^3.1.0",
"eslint-config-oclif-typescript": "^0.2.0",
"globby": "^11.0.1",
"mocha": "^8.0.1",
"oclif": "^3.14.0",
"ts-node": "^9.1.1",
"tslib": "^2.6.2",
"typescript": "4.4.3"
},
"engines": {
"node": ">=12.0.0"
},
"files": [
"oclif.manifest.json",
"/lib"
],
"homepage": "https://github.com/oclif/plugin-warn-if-update-available",
"keywords": [
"oclif-plugin"
],
"license": "MIT",
"oclif": {
"bin": "oclif-example",
"hooks": {
"init": [
"./lib/hooks/init/check-update"
]
}
},
"repository": "oclif/plugin-warn-if-update-available",
"scripts": {
"build": "rm -rf lib && tsc",
"clean": "rm -f oclif.manifest.json",
"lint": "eslint . --ext .ts --config .eslintrc",
"pretest": "yarn build --noEmit && tsc -p test --noEmit",
"test": "mocha --forbid-only \"test/**/*.test.ts\"",
"posttest": "yarn lint",
"prepublishOnly": "yarn run build && oclif manifest . && oclif readme",
"postpublish": "yarn run clean",
"preversion": "yarn run clean",
"version": "oclif readme && git add README.md"
},
"main": "lib/index.js"
}