-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
74 lines (74 loc) · 1.88 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
{
"name": "suggestion-bot",
"version": "0.0.1-dev",
"description": "suggestion-bot submits code reviews with suggestions based on your diffs",
"keywords": [
"code review",
"diff",
"github",
"pull request",
"review",
"suggestion"
],
"homepage": "https://github.com/tido64/suggestion-bot#readme",
"license": "MIT",
"author": {
"name": "Tommy Nguyen",
"email": "[email protected]"
},
"files": [
"cli.js",
"src/**/*.d.ts",
"src/**/*.js"
],
"main": "src/index.js",
"bin": "cli.js",
"type": "module",
"exports": {
".": {
"default": "./src/index.js"
},
"./cli.js": {
"default": "./cli.js"
},
"./package.json": "./package.json"
},
"repository": {
"type": "git",
"url": "https://github.com/tido64/suggestion-bot.git"
},
"scripts": {
"build": "yarn clean && yarn lint && tsc",
"clean": "git clean -dfqx -- src/ test/",
"format": "prettier --write $(git ls-files '*.js' '*.json' '*.md' '*.yml' ':!:.yarn/**/*.cjs')",
"lint": "eslint $(git ls-files '*.js' ':!:*.config.js' ':!:.yarn/**/*.js')",
"suggest": "suggestion-bot",
"test": "node --test --experimental-test-coverage $(git ls-files 'test/*.test.js')"
},
"dependencies": {
"@octokit/core": "^6.0",
"@octokit/plugin-rest-endpoint-methods": "^13.0",
"azure-devops-node-api": "^13.0.0",
"parse-diff": "^0.11"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"@rnx-kit/tsconfig": "^2.0.0",
"@types/node": "^22.0.0",
"eslint": "^9.0.0",
"prettier": "^3.0",
"semantic-release": "^24.0.0",
"typescript": "^5.0"
},
"engines": {
"node": ">=18.12"
},
"packageManager": "[email protected]",
"resolutions": {
"@semantic-release/npm/npm": "link:."
},
"prettier": "./.github/prettierrc.json",
"release": {
"extends": "./.github/semantic-release.json"
}
}