UNPKG

1.8 kBJSONView Raw
1{
2 "name": "@oclif/plugin-autocomplete",
3 "description": "autocomplete plugin for oclif",
4 "version": "1.3.0",
5 "author": "Salesforce",
6 "bugs": "https://github.com/oclif/plugin-autocomplete/issues",
7 "dependencies": {
8 "@oclif/core": "^1.7.0",
9 "chalk": "^4.1.0",
10 "debug": "^4.3.4",
11 "fs-extra": "^9.0.1"
12 },
13 "devDependencies": {
14 "@oclif/plugin-help": "^5",
15 "@oclif/test": "^2",
16 "@types/chai": "^4",
17 "@types/fs-extra": "^9.0.13",
18 "@types/mocha": "^8",
19 "@types/nock": "^11.1.0",
20 "@types/node": "^15.14.9",
21 "@types/sinon-chai": "^3.2.6",
22 "chai": "^4",
23 "eslint": "^7.3.1",
24 "eslint-config-oclif": "^3.1.0",
25 "eslint-config-oclif-typescript": "^0.2.0",
26 "globby": "^11",
27 "mocha": "^8.2.1",
28 "nock": "^13.2.1",
29 "nyc": "^15.1.0",
30 "oclif": "^2.3.0",
31 "shx": "^0.3.3",
32 "sinon": "^12.0.1",
33 "sinon-chai": "^3.7.0",
34 "ts-node": "^9.0.0",
35 "tslib": "^2.0.0",
36 "typescript": "4.6.3"
37 },
38 "engines": {
39 "node": ">=12.0.0"
40 },
41 "files": [
42 "/lib",
43 "/oclif.manifest.json"
44 ],
45 "homepage": "https://github.com/oclif/plugin-autocomplete",
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 },
57 "repository": "oclif/plugin-autocomplete",
58 "scripts": {
59 "lint": "eslint . --ext .ts --config .eslintrc",
60 "pretest": "yarn build && tsc -p test",
61 "test": "mocha --forbid-only \"test/**/*.test.ts\"",
62 "posttest": "yarn lint",
63 "prepack": "shx rm -rf lib && tsc && oclif manifest . && oclif readme",
64 "postpack": "shx rm -f oclif.manifest.json",
65 "version": "oclif readme && git add README.md",
66 "build": "shx rm -rf lib && tsc"
67 }
68}