UNPKG

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