This repository has been archived by the owner on May 3, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 17
/
Copy pathpackage.json
97 lines (97 loc) · 2.61 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "gh-search-cli",
"description": "github.com search cli",
"version": "3.1.0",
"author": "feinoujc @feinoujc",
"bin": {
"ghs": "./bin/run"
},
"bugs": "https://github.com/feinoujc/gh-search-cli/issues",
"dependencies": {
"@oclif/command": "^1.4.4",
"@oclif/config": "^1.3.60",
"@oclif/parser": "^3.8.4",
"@oclif/plugin-help": "5",
"chalk": "^4.0.0",
"cli-ux": "^6.0.6",
"fs-extra": "^10.0.0",
"parse-link-header": "^2.0.0",
"request": "^2.85.0",
"request-promise-native": "^1.0.5",
"tslib": "^2.0.0"
},
"devDependencies": {
"@oclif/dev-cli": "^1.22.0",
"@oclif/nyc-config": "1",
"@oclif/test": "^1.2.4",
"@types/chai": "^4.1.2",
"@types/fs-extra": "^9.0.1",
"@types/git-user-name": "^2.0.0",
"@types/mocha": "^9.0.0",
"@types/nock": "^10.0.3",
"@types/node": "^17.0.0",
"@types/parse-link-header": "^2.0.0",
"@types/request-promise-native": "^1.0.14",
"@types/sinon": "^10.0.2",
"@typescript-eslint/eslint-plugin": "^4.4.0",
"@typescript-eslint/parser": "^4.4.0",
"chai": "^4.1.2",
"cross-env": "^7.0.0",
"eslint": "^7.11.0",
"eslint-config-oclif": "^3.1.0",
"eslint-config-oclif-typescript": "^1.0.2",
"eslint-config-prettier": "^8.1.0",
"globby": "^11.0.0",
"mocha": "^9.0.3",
"nock": "^13.0.2",
"nyc": "^15.0.0",
"prettier": "^2.0.2",
"sinon": "^13.0.1",
"ts-node": "^10.2.0",
"typescript": "^4.0.3"
},
"engines": {
"node": ">=10"
},
"files": [
".oclif.manifest.json",
"/bin",
"/lib"
],
"homepage": "https://github.com/feinoujc/gh-search-cli",
"keywords": [
"oclif",
"github",
"search",
"api",
"cli"
],
"license": "MIT",
"main": "lib/index.js",
"oclif": {
"commands": "./lib/commands",
"bin": "ghs",
"plugins": [
"@oclif/plugin-help"
],
"hooks": {
"init": "./lib/hooks/init/auth"
}
},
"repository": "feinoujc/gh-search-cli",
"scripts": {
"posttest": "eslint . --ext .ts --config .eslintrc",
"prepack": "rm -rf lib && tsc -b",
"test": "nyc --reporter lcov mocha \"test/**/*.test.ts\"",
"build": "rm -rf lib && tsc",
"clean": "rm -f .oclif.manifest.json",
"prettier:check": "prettier --check **/*.{js,json,ts,yaml,yml}",
"prettier": "prettier --write **/*.{js,json,ts,yaml,yml}",
"postpublish": "npm run clean",
"prepublishOnly": "npm run build && oclif-dev manifest",
"preversion": "npm run clean",
"version": "oclif-dev readme && git add README.md",
"debug": "cross-env DEBUG=${DEBUG:-ghs:*} ./bin/run"
},
"types": "lib/index.d.ts"
}