UNPKG

1.93 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": "2.0.4",
5 "author": "Salesforce",
6 "bugs": "https://github.com/oclif/plugin-warn-if-update-available/issues",
7 "dependencies": {
8 "@oclif/core": "^1.0.8",
9 "chalk": "^4.1.0",
10 "debug": "^4.1.0",
11 "fs-extra": "^9.0.1",
12 "http-call": "^5.2.2",
13 "lodash": "^4.17.21",
14 "semver": "^7.3.2"
15 },
16 "devDependencies": {
17 "@oclif/test": "^1.2.8",
18 "@types/chai": "^4.1.6",
19 "@types/fs-extra": "^9.0.1",
20 "@types/lodash": "^4.14.177",
21 "@types/mocha": "^8.0.0",
22 "@types/node": "^14.0.14",
23 "@types/semver": "^7.3.1",
24 "chai": "^4.2.0",
25 "eslint": "^7.3.1",
26 "eslint-config-oclif": "^3.1.0",
27 "eslint-config-oclif-typescript": "^0.2.0",
28 "globby": "^11.0.1",
29 "mocha": "^8.0.1",
30 "oclif": "^2.0.0-main.14",
31 "ts-node": "^9.1.1",
32 "tslib": "^2.0.0",
33 "typescript": "4.4.3"
34 },
35 "engines": {
36 "node": ">=12.0.0"
37 },
38 "files": [
39 "oclif.manifest.json",
40 "/lib"
41 ],
42 "homepage": "https://github.com/oclif/plugin-warn-if-update-available",
43 "keywords": [
44 "oclif-plugin"
45 ],
46 "license": "MIT",
47 "oclif": {
48 "bin": "oclif-example",
49 "hooks": {
50 "init": [
51 "./lib/hooks/init/check-update"
52 ]
53 }
54 },
55 "repository": "oclif/plugin-warn-if-update-available",
56 "scripts": {
57 "build": "rm -rf lib && tsc",
58 "clean": "rm -f oclif.manifest.json",
59 "lint": "eslint . --ext .ts --config .eslintrc",
60 "pretest": "yarn build --noEmit && tsc -p test --noEmit",
61 "test": "mocha --forbid-only \"test/**/*.test.ts\"",
62 "posttest": "yarn lint",
63 "prepublishOnly": "yarn run build && oclif manifest . && oclif readme",
64 "postpublish": "yarn run clean",
65 "preversion": "yarn run clean",
66 "version": "oclif readme && git add README.md"
67 },
68 "main": "lib/index.js"
69}