forked from oclif/plugin-update
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
81 lines (81 loc) · 2.18 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
74
75
76
77
78
79
80
81
{
"name": "@vtex/cli-plugin-autoupdate",
"version": "0.0.2",
"bugs": "https://github.com/vtex/cli-plugin-autoupdate/issues",
"dependencies": {
"@oclif/color": "^0.1.0",
"@oclif/command": "^1.7.0",
"@oclif/config": "^1.16.0",
"@oclif/errors": "^1.2.2",
"@types/semver": "^7.3.1",
"cli-ux": "^5.4.7",
"cross-spawn": "^7.0.3",
"debug": "^4.1.0",
"filesize": "^6.1.0",
"fs-extra": "^9.0.1",
"http-call": "^5.3.0",
"lodash": "^4.17.19",
"log-chopper": "^1.0.2",
"semver": "^7.3.2",
"tar-fs": "^2.1.0"
},
"devDependencies": {
"@oclif/dev-cli": "^1.22.2",
"@oclif/plugin-help": "^3",
"@oclif/test": "^1.2.6",
"@types/chai": "^4.2.12",
"@types/cross-spawn": "^6.0.2",
"@types/execa": "^0.9.0",
"@types/fs-extra": "^8.0.1",
"@types/glob": "^7.1.3",
"@types/lodash": "^4.14.158",
"@types/mocha": "^8.0.0",
"@types/node": "^14.0.26",
"@types/supports-color": "^5.3.0",
"@types/write-json-file": "^3.2.1",
"chai": "^4.2.0",
"eslint": "^7.5.0",
"eslint-config-oclif": "^3.1.0",
"eslint-config-oclif-typescript": "^0.2.0",
"globby": "^11.0.1",
"mocha": "^5.2.0",
"qqjs": "^0.3.11",
"ts-node": "^8.10.2",
"tslib": "^2.0.0",
"typescript": "3.8.3"
},
"engines": {
"node": ">=8.0.0"
},
"files": [
"oclif.manifest.json",
"/lib"
],
"homepage": "https://github.com/vtex/cli-plugin-autoupdate",
"keywords": [
"oclif-plugin"
],
"license": "MIT",
"oclif": {
"autoupdate": "github",
"commands": "./lib/commands",
"bin": "oclif-example",
"hooks": {
"init": "./lib/hooks/init"
},
"devPlugins": [
"@oclif/plugin-help"
]
},
"repository": "vtex/cli-plugin-autoupdate",
"scripts": {
"lint": "eslint . --ext .ts --config .eslintrc",
"pretest": "yarn build --noEmit && tsc -p test --noEmit",
"test": "mocha --forbid-only \"test/**/*.test.ts\"",
"posttest": "yarn lint",
"prepack": "rm -rf lib && tsc -b && oclif-dev manifest --color=256 && oclif-dev readme",
"postpack": "rm -f oclif.manifest.json",
"version": "oclif-dev readme && git add README.md",
"build": "rm -rf lib && tsc"
}
}