UNPKG

1.54 kBJSONView Raw
1{
2 "name": "@oclif/plugin-which",
3 "description": "find which plugin a command is in",
4 "version": "2.1.0",
5 "author": "Salesforce",
6 "bugs": "https://github.com/oclif/plugin-which/issues",
7 "dependencies": {
8 "@oclif/core": "^1.2.0",
9 "tslib": "^2.0.0"
10 },
11 "devDependencies": {
12 "@oclif/plugin-help": "^5.1.10",
13 "@oclif/test": "^2.0.3",
14 "@types/chai": "^4.1.6",
15 "@types/mocha": "^9",
16 "@types/node": "^14.18.3",
17 "chai": "^4.2.0",
18 "eslint": "^7.32.0",
19 "eslint-config-oclif": "^4.0.0",
20 "eslint-config-oclif-typescript": "^1.0.2",
21 "globby": "^11",
22 "mocha": "^9",
23 "nyc": "^15.1.0",
24 "oclif": "^2.3.0",
25 "ts-node": "^9.0.0",
26 "typescript": "4.4.3"
27 },
28 "engines": {
29 "node": ">=12.0.0"
30 },
31 "files": [
32 "/lib",
33 "/oclif.manifest.json"
34 ],
35 "homepage": "https://github.com/oclif/plugin-which",
36 "keywords": [
37 "oclif-plugin"
38 ],
39 "license": "MIT",
40 "oclif": {
41 "commands": "./lib/commands",
42 "bin": "oclif-example",
43 "devPlugins": [
44 "@oclif/plugin-help"
45 ]
46 },
47 "repository": "oclif/plugin-which",
48 "scripts": {
49 "postpack": "rm -f oclif.manifest.json",
50 "posttest": "yarn lint",
51 "prepack": "yarn build && oclif manifest . && oclif readme",
52 "test": "mocha --forbid-only \"test/**/*.test.ts\"",
53 "version": "oclif readme && git add README.md",
54 "lint": "eslint . --ext .ts --config .eslintrc",
55 "pretest": "yarn build && tsc -p test --noEmit",
56 "build": "rm -rf lib && tsc"
57 },
58 "main": "lib/index.js"
59}