UNPKG

1.97 kBJSONView Raw
1{
2 "name": "@oclif/plugin-which",
3 "description": "find which plugin a command is in",
4 "version": "3.1.1",
5 "author": "Salesforce",
6 "bugs": "https://github.com/oclif/plugin-which/issues",
7 "dependencies": {
8 "@oclif/core": "^3.18.1"
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 "@types/chai": "^4.3.11",
15 "@types/mocha": "^10.0.6",
16 "@types/node": "^18",
17 "@types/sinon": "^17.0.3",
18 "chai": "^4.4.1",
19 "commitlint": "^17.8.1",
20 "eslint": "^8.56.0",
21 "eslint-config-oclif": "^5.0.0",
22 "eslint-config-oclif-typescript": "^3.0.47",
23 "eslint-config-prettier": "^9.1.0",
24 "globby": "^11",
25 "husky": "^8.0.3",
26 "lint-staged": "^14.0.1",
27 "mocha": "^10.3.0",
28 "nyc": "^15.1.0",
29 "oclif": "^4.4.12",
30 "prettier": "^3.2.5",
31 "shx": "^0.3.4",
32 "sinon": "^17.0.1",
33 "ts-node": "^10.9.2",
34 "typescript": "^5.3.3"
35 },
36 "engines": {
37 "node": ">=18.0.0"
38 },
39 "exports": "./lib/index.js",
40 "files": [
41 "/lib",
42 "/oclif.manifest.json",
43 "/oclif.lock"
44 ],
45 "homepage": "https://github.com/oclif/plugin-which",
46 "keywords": [
47 "oclif-plugin"
48 ],
49 "license": "MIT",
50 "oclif": {
51 "commands": "./lib/commands",
52 "bin": "oclif-example",
53 "devPlugins": [
54 "@oclif/plugin-help"
55 ],
56 "flexibleTaxonomy": true,
57 "topicSeparator": " "
58 },
59 "repository": "oclif/plugin-which",
60 "scripts": {
61 "build": "shx rm -rf lib && tsc",
62 "lint": "eslint . --ext .ts",
63 "postpack": "shx rm -f oclif.manifest.json oclif.lock",
64 "posttest": "yarn lint",
65 "prepack": "yarn build && oclif lock && oclif manifest . && oclif readme",
66 "prepare": "husky install && 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}