UNPKG

2.1 kBJSONView Raw
1{
2 "name": "@oclif/plugin-warn-if-update-available",
3 "description": "warns if there is a newer version of CLI released",
4 "version": "3.1.5",
5 "author": "Salesforce",
6 "bugs": "https://github.com/oclif/plugin-warn-if-update-available/issues",
7 "dependencies": {
8 "@oclif/core": "^4",
9 "ansis": "^3.2.0",
10 "debug": "^4.3.5",
11 "http-call": "^5.2.2",
12 "lodash": "^4.17.21"
13 },
14 "devDependencies": {
15 "@commitlint/config-conventional": "^19",
16 "@oclif/prettier-config": "^0.2.1",
17 "@types/chai": "^4.3.11",
18 "@types/debug": "^4.1.12",
19 "@types/lodash": "^4.17.4",
20 "@types/mocha": "^10.0.6",
21 "@types/node": "^18",
22 "@types/sinon": "^17.0.3",
23 "chai": "^4.4.0",
24 "commitlint": "^19",
25 "eslint": "^8.57.0",
26 "eslint-config-oclif": "^5.2.0",
27 "eslint-config-oclif-typescript": "^3.1.7",
28 "eslint-config-prettier": "^9.1.0",
29 "husky": "^9",
30 "lint-staged": "^15",
31 "mocha": "^10.4.0",
32 "oclif": "^4.12.0",
33 "prettier": "^3.3.0",
34 "shx": "^0.3.3",
35 "sinon": "^18.0.0",
36 "ts-node": "^10.9.2",
37 "typescript": "^5.4.5"
38 },
39 "engines": {
40 "node": ">=18.0.0"
41 },
42 "exports": "./lib/index.js",
43 "files": [
44 "oclif.manifest.json",
45 "/lib"
46 ],
47 "homepage": "https://github.com/oclif/plugin-warn-if-update-available",
48 "keywords": [
49 "oclif-plugin"
50 ],
51 "license": "MIT",
52 "oclif": {
53 "bin": "oclif-example",
54 "hooks": {
55 "init": [
56 "./lib/hooks/init/check-update"
57 ]
58 },
59 "topicSeparator": " "
60 },
61 "repository": "oclif/plugin-warn-if-update-available",
62 "scripts": {
63 "build": "shx rm -rf lib && tsc",
64 "clean": "shx rm -f oclif.manifest.json",
65 "compile": "tsc",
66 "lint": "eslint . --ext .ts",
67 "postpack": "yarn run clean",
68 "posttest": "yarn lint",
69 "prepack": "yarn build && oclif manifest && oclif readme",
70 "prepare": "husky && yarn build",
71 "pretest": "yarn build --noEmit && tsc -p test --noEmit",
72 "test": "mocha --forbid-only \"test/**/*.test.ts\"",
73 "version": "oclif readme && git add README.md"
74 },
75 "type": "module"
76}