This repository has been archived by the owner on Mar 13, 2023. It is now read-only.
forked from oclif/plugin-warn-if-update-available
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
73 lines (73 loc) · 2.05 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "@envoy/plugin-warn-if-update-available",
"description": "warns if there is a newer version of CLI released",
"version": "1.11.0",
"author": "Jeff Dickey @jdxcode",
"bugs": "https://github.com/envoy/plugin-warn-if-update-available/issues",
"dependencies": {
"@oclif/command": "^1.6.0",
"@oclif/config": "^1.12.8",
"@oclif/errors": "^1.3.5",
"chalk": "^4.1.2",
"fs-extra": "^9.0.1",
"libnpm": "^3.0.1",
"lodash.template": "^4.5.0",
"semver": "^7.3.5"
},
"devDependencies": {
"@oclif/dev-cli": "^1.19.1",
"@oclif/test": "^1.2.4",
"@types/chai": "^4.2.21",
"@types/fs-extra": "^9.0.12",
"@types/lodash.template": "^4.4.5",
"@types/mocha": "^8.2.3",
"@types/node": "^16.4.10",
"@types/semver": "^7.3.7",
"chai": "^4.3.4",
"eslint": "^7.32.0",
"eslint-config-oclif": "^3.1.0",
"eslint-config-oclif-typescript": "^0.2.0",
"eslint-config-prettier": "^8.3.0",
"globby": "^11.0.4",
"mocha": "^8.0.1",
"ts-node": "^9.1.1",
"tslib": "^2.3.0",
"typescript": "3.8.3"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"oclif.manifest.json",
"/lib"
],
"homepage": "https://github.com/envoy/plugin-warn-if-update-available",
"keywords": [
"oclif-plugin"
],
"license": "MIT",
"oclif": {
"bin": "oclif-example",
"hooks": {
"postrun": [
"./lib/hooks/postrun/check-update"
]
}
},
"repository": "envoy/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-dev manifest && oclif-dev readme",
"postpublish": "yarn run clean",
"preversion": "yarn run clean",
"version": "oclif-dev readme && git add README.md"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com/"
}
}