forked from oclif/plugin-autocomplete
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
68 lines (68 loc) · 1.77 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "@hackmd/oclif-plugin-autocomplete",
"description": "autocomplete plugin for oclif",
"version": "2.1.9-fish",
"author": "Salesforce",
"bugs": "https://github.com/oclif/plugin-autocomplete/issues",
"dependencies": {
"@oclif/core": "^2.8.2",
"chalk": "^4.1.0",
"debug": "^4.3.4",
"fs-extra": "^9.0.1"
},
"devDependencies": {
"@oclif/plugin-help": "^5",
"@oclif/test": "^2",
"@types/chai": "^4",
"@types/fs-extra": "^9.0.13",
"@types/mocha": "^8",
"@types/nock": "^11.1.0",
"@types/node": "^15.14.9",
"@types/sinon-chai": "^3.2.9",
"chai": "^4",
"eslint": "^7.3.1",
"eslint-config-oclif": "^3.1.0",
"eslint-config-oclif-typescript": "^0.2.0",
"globby": "^11",
"mocha": "^8.2.1",
"nock": "^13.3.0",
"nyc": "^15.1.0",
"oclif": "^3.8.1",
"shx": "^0.3.3",
"sinon": "^12.0.1",
"sinon-chai": "^3.7.0",
"ts-node": "^9.0.0",
"tslib": "^2.5.0",
"typescript": "4.6.3"
},
"engines": {
"node": ">=12.0.0"
},
"files": [
"/lib",
"/oclif.manifest.json"
],
"homepage": "https://github.com/oclif/plugin-autocomplete",
"keywords": [
"oclif-plugin"
],
"license": "MIT",
"oclif": {
"commands": "./lib/commands",
"bin": "oclif-example",
"devPlugins": [
"@oclif/plugin-help"
]
},
"repository": "oclif/plugin-autocomplete",
"scripts": {
"lint": "eslint . --ext .ts --config .eslintrc",
"pretest": "yarn build && tsc -p test",
"test": "mocha --forbid-only \"test/**/*.test.ts\"",
"posttest": "yarn lint",
"prepack": "shx rm -rf lib && tsc && oclif manifest . && oclif readme",
"postpack": "shx rm -f oclif.manifest.json",
"version": "oclif readme && git add README.md",
"build": "shx rm -rf lib && tsc"
}
}