UNPKG

1.93 kBJSONView Raw
1{
2 "name": "@oclif/plugin-which",
3 "description": "find which plugin a command is in",
4 "version": "3.2.15",
5 "author": "Salesforce",
6 "bugs": "https://github.com/oclif/plugin-which/issues",
7 "dependencies": {
8 "@oclif/core": "^4",
9 "ansis": "^3.3.1"
10 },
11 "devDependencies": {
12 "@commitlint/config-conventional": "^19",
13 "@oclif/plugin-help": "^6",
14 "@oclif/prettier-config": "^0.2.1",
15 "@oclif/test": "^4.0.9",
16 "@types/chai": "^4.3.16",
17 "@types/mocha": "^10.0.8",
18 "@types/node": "^18",
19 "chai": "^4.5.0",
20 "commitlint": "^19",
21 "eslint": "^8.57.1",
22 "eslint-config-oclif": "^5.2.1",
23 "eslint-config-oclif-typescript": "^3.1.11",
24 "eslint-config-prettier": "^9.1.0",
25 "husky": "^9.1.6",
26 "lint-staged": "^15",
27 "mocha": "^10.7.3",
28 "nyc": "^15.1.0",
29 "oclif": "^4.14.35",
30 "prettier": "^3.3.3",
31 "shx": "^0.3.4",
32 "ts-node": "^10.9.2",
33 "typescript": "^5.6.2"
34 },
35 "engines": {
36 "node": ">=18.0.0"
37 },
38 "exports": "./lib/index.js",
39 "files": [
40 "/lib",
41 "/oclif.manifest.json"
42 ],
43 "homepage": "https://github.com/oclif/plugin-which",
44 "keywords": [
45 "oclif-plugin"
46 ],
47 "license": "MIT",
48 "oclif": {
49 "commands": "./lib/commands",
50 "bin": "oclif-example",
51 "devPlugins": [
52 "@oclif/plugin-help"
53 ],
54 "flexibleTaxonomy": true,
55 "topicSeparator": " "
56 },
57 "repository": "oclif/plugin-which",
58 "scripts": {
59 "build": "shx rm -rf lib && tsc",
60 "clean": "shx rm -f oclif.manifest.json",
61 "compile": "tsc",
62 "lint": "eslint . --ext .ts",
63 "postpack": "yarn run clean",
64 "posttest": "yarn lint",
65 "prepack": "yarn build && oclif manifest && oclif readme",
66 "prepare": "husky && yarn build",
67 "pretest": "yarn build && tsc -p test --noEmit",
68 "test": "mocha --forbid-only \"test/**/*.test.ts\"",
69 "version": "oclif readme && git add README.md"
70 },
71 "type": "module"
72}