-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.58 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
{
"name": "git-suggest-reviewer",
"version": "3.0.0",
"description": "Suggest candidates for a code review based on git history",
"license": "MIT",
"repository": "ccntrq/git-suggest-reviewer",
"author": {
"name": "Alexander Pankoff",
"email": "ccntrq@screenri.de"
},
"bugs": "https://github.com/ccntrq/git-suggest-reviewer/issues",
"engines": {
"node": ">=16.0.0"
},
"volta": {
"node": "20.9.0"
},
"keywords": [
"cli",
"code review",
"code-review",
"git",
"pull request",
"pull-request",
"review"
],
"scripts": {
"start": "npm run build && node dist/cli.js",
"build": "tsc",
"build:watch": "tsc --watch",
"clean": "rimraf dist/ docs/",
"lint": "eslint .",
"fix": "eslint . --fix",
"pretest": "npm run build",
"test": "vitest run",
"doc": "typedoc src/index.ts",
"prepare": "npm run clean && npm run build"
},
"bin": {
"git-suggest-reviewer": "dist/cli.js"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"/dist"
],
"devDependencies": {
"@tsconfig/node20": "^20.1.2",
"@tsconfig/strictest": "^2.0.2",
"@types/node": "^20.11.16",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"@typescript-eslint/typescript-estree": "^6.13.1",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.1.3",
"prettier": "^3.2.4",
"rimraf": "^5.0.5",
"typedoc": "^0.25.7",
"typescript": "~5.3.3",
"vitest": "^1.2.2"
}
}