-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
85 lines (85 loc) · 2.54 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
82
83
84
85
{
"name": "oclif-plugin-completion",
"version": "0.6.0",
"description": "oclif plugin for generating shell completions",
"keywords": [
"oclif",
"oclif-plugin",
"shell",
"zsh",
"completion",
"autocomplete"
],
"homepage": "https://github.com/MunifTanjim/oclif-plugin-completion#readme",
"bugs": "https://github.com/MunifTanjim/oclif-plugin-completion/issues",
"license": "MIT",
"author": "Munif Tanjim (https://muniftanjim.dev)",
"files": [
"/lib",
"/oclif.manifest.json",
"/yarn.lock"
],
"repository": {
"type": "git",
"url": "https://github.com/MunifTanjim/oclif-plugin-completion"
},
"scripts": {
"prebuild": "rm -rf lib",
"build": "tsc -b",
"changelog": "conventional-changelog --config .changelogrc.js -i CHANGELOG.md -s -a",
"postchangelog": "git add CHANGELOG.md",
"cz": "npx git-cz",
"prepack": "npm run build && oclif-dev manifest",
"postpack": "rm -f oclif.manifest.json",
"readme": "oclif-dev readme",
"postreadme": "prettier --write README.md && git add README.md",
"prerelease": "git commit -m \"chore: release $npm_package_version\" && git tag $npm_package_version -am $npm_package_version",
"release": "yarn publish",
"test": "echo NO TESTS",
"posttest": "eslint . --ext .ts --config .eslintrc.js",
"preversion": "yarn config set version-git-tag false",
"version": "npm run changelog && npm run readme",
"postversion": "git add package.json"
},
"dependencies": {
"@oclif/command": "^1",
"@oclif/config": "^1",
"tslib": "^2"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@commitlint/prompt-cli": "^8.3.5",
"@oclif/dev-cli": "^1",
"@oclif/plugin-help": "^3",
"@types/node": "^14.0",
"commitizen": "^4.1.2",
"conventional-changelog-cli": "^2.0.34",
"conventional-changelog-conventionalcommits": "^4.3.1",
"eslint": "^6.8",
"eslint-config-oclif": "^3.1",
"eslint-config-oclif-typescript": "^0.1",
"eslint-config-prettier": "^6.10",
"eslint-plugin-prettier": "^3.1",
"husky": "^4.2",
"lint-staged": "^10.2",
"prettier": "^2.0",
"pretty-quick": "^2.0",
"ts-node": "^8.6",
"typescript": "^3.8"
},
"peerDependencies": {
"@oclif/errors": "^1.2"
},
"engines": {
"node": ">=8.0.0"
},
"oclif": {
"commands": "./lib/commands",
"bin": "dummy",
"devPlugins": [
"@oclif/plugin-help"
],
"repositoryPrefix": "<%- repo %>/blob/<%- version %>/<%- commandPath %>"
}
}