UNPKG

2.22 kBJSONView Raw
1{
2 "name": "@oclif/plugin-autocomplete",
3 "description": "autocomplete plugin for oclif",
4 "version": "3.2.7",
5 "author": "Salesforce",
6 "bugs": "https://github.com/oclif/plugin-autocomplete/issues",
7 "dependencies": {
8 "@oclif/core": "^4",
9 "ansis": "^3.3.1",
10 "debug": "^4.3.6",
11 "ejs": "^3.1.10"
12 },
13 "devDependencies": {
14 "@commitlint/config-conventional": "^19",
15 "@oclif/plugin-help": "^6",
16 "@oclif/prettier-config": "^0.2.1",
17 "@oclif/test": "^4",
18 "@types/chai": "^4",
19 "@types/debug": "^4.1.12",
20 "@types/ejs": "^3.1.5",
21 "@types/mocha": "^10.0.9",
22 "@types/nock": "^11.1.0",
23 "@types/node": "^18",
24 "chai": "^4",
25 "commitlint": "^19",
26 "eslint": "^8.57.1",
27 "eslint-config-oclif": "^5.2.1",
28 "eslint-config-oclif-typescript": "^3.1.12",
29 "eslint-config-prettier": "^9.1.0",
30 "husky": "^9.1.6",
31 "lint-staged": "^15.2.10",
32 "mocha": "^10.7.3",
33 "nock": "^13.5.5",
34 "nyc": "^15.1.0",
35 "oclif": "^4.15.9",
36 "prettier": "^3.3.3",
37 "shx": "^0.3.3",
38 "ts-node": "^10.9.2",
39 "typescript": "^5.6.3"
40 },
41 "engines": {
42 "node": ">=18.0.0"
43 },
44 "exports": "./lib/index.js",
45 "files": [
46 "oclif.manifest.json",
47 "/lib"
48 ],
49 "homepage": "https://github.com/oclif/plugin-autocomplete",
50 "keywords": [
51 "oclif-plugin"
52 ],
53 "license": "MIT",
54 "oclif": {
55 "commands": "./lib/commands",
56 "bin": "oclif-example",
57 "devPlugins": [
58 "@oclif/plugin-help"
59 ],
60 "flexibleTaxonomy": true,
61 "hooks": {
62 "plugins:postinstall": "./lib/hooks/refresh-cache.js",
63 "plugins:postuninstall": "./lib/hooks/refresh-cache.js"
64 }
65 },
66 "repository": "oclif/plugin-autocomplete",
67 "scripts": {
68 "build": "shx rm -rf lib && tsc",
69 "clean": "shx rm -f oclif.manifest.json",
70 "compile": "tsc",
71 "lint": "eslint . --ext .ts",
72 "postpack": "yarn run clean",
73 "posttest": "yarn lint",
74 "prepack": "yarn build && oclif manifest && oclif readme",
75 "prepare": "husky && yarn build",
76 "pretest": "yarn build && tsc -p test --noEmit",
77 "test": "mocha --forbid-only \"test/**/*.test.ts\"",
78 "version": "oclif readme && git add README.md"
79 },
80 "type": "module"
81}