-
Notifications
You must be signed in to change notification settings - Fork 10
/
package.json
115 lines (115 loc) · 3.62 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "reviewflow",
"private": true,
"version": "3.18.0",
"description": "🚦 Open Source GitHub bot that improves PR flow from opening to merging.",
"author": "Christophe Hurpeau <[email protected]> (https://christophe.hurpeau.com)",
"license": "ISC",
"repository": "https://github.com/christophehurpeau/reviewflow.git",
"homepage": "https://github.com/christophehurpeau/reviewflow",
"type": "module",
"packageManager": "[email protected]",
"engines": {
"node": ">=20.9.0"
},
"main": "./build/index-node.mjs",
"exports": {
"./package.json": "./package.json",
".": {
"types": "./src/index.ts",
"node": {
"import": "./build/index-node.mjs"
}
}
},
"scripts": {
"build": "yarn clean:build && rollup --config rollup.config.mjs",
"checks": "node scripts/check-package.js",
"clean": "yarn clean:build",
"clean:build": "pob-esbuild-clean-out build",
"generate:test-coverage": "rm -Rf docs/coverage/ ; NODE_ENV=production vitest --coverage",
"lint": "yarn run lint:prettier && tsc && yarn run lint:eslint",
"lint:eslint": "eslint --report-unused-disable-directives --resolve-plugins-relative-to . --quiet *.{js,cjs,mjs} src scripts",
"lint:prettier": "pob-root-prettier --check .",
"lint:prettier:fix": "pob-root-prettier --write .",
"postinstall": "pob-root-postinstall",
"start": "yarn clean:build && rollup --config rollup.config.mjs --watch",
"test": "vitest",
"test:coverage": "POB_VITEST_COVERAGE=json,text vitest run --coverage",
"test:coverage:json": "POB_VITEST_COVERAGE=json vitest run --coverage",
"test:coverage:lcov": "POB_VITEST_COVERAGE=lcovvitest run --coverage",
"test:watch": "vitest --watch"
},
"commitlint": {
"extends": [
"@pob/commitlint-config"
]
},
"pob": {
"bundler": "rollup-esbuild",
"entries": [
"index"
],
"envs": [
{
"target": "node",
"version": "20",
"omitVersionInFileName": true
}
],
"jsx": true,
"typescript": true
},
"prettier": "@pob/root/prettier-config",
"dependencies": {
"@commitlint/config-conventional": "19.2.2",
"@commitlint/lint": "19.2.2",
"@commitlint/parse": "19.0.3",
"@octokit/core": "5.0.2",
"@octokit/rest": "20.0.2",
"@octokit/webhooks": "12.0.10",
"@slack/web-api": "6.13.0",
"@tryfabric/mack": "1.2.1",
"body-parser": "1.20.3",
"conventional-changelog-conventionalcommits": "8.0.0",
"cookie-parser": "1.4.7",
"delay": "6.0.0",
"dotenv": "16.4.7",
"emoji-regex": "10.3.0",
"express": "4.21.2",
"issue-parser": "7.0.1",
"jsonwebtoken": "9.0.2",
"liwi-mongo": "12.0.0",
"lock": "1.1.0",
"probot": "13.3.0",
"react": "18.3.0",
"react-dom": "18.3.0",
"simple-oauth2": "5.0.0",
"slackify-markdown": "4.3.1"
},
"devDependencies": {
"@pob/commitlint-config": "6.4.0",
"@pob/eslint-config": "56.0.0",
"@pob/eslint-config-typescript": "56.0.0",
"@pob/eslint-config-typescript-react": "56.0.0",
"@pob/rollup-esbuild": "3.1.2",
"@pob/root": "12.0.0",
"@types/body-parser": "1.19.5",
"@types/cookie-parser": "1.4.8",
"@types/express": "4.17.21",
"@types/issue-parser": "3.0.5",
"@types/jsonwebtoken": "9.0.7",
"@types/node": "20.17.10",
"@types/react": "18.3.1",
"@types/react-dom": "18.3.0",
"@types/simple-oauth2": "5.0.7",
"@vitest/coverage-v8": "1.6.0",
"check-package-dependencies": "7.2.0",
"eslint": "8.57.1",
"nock": "14.0.0-beta.19",
"smee-client": "2.0.4",
"type-fest": "4.26.1",
"typescript": "5.4.5",
"vitest": "1.6.0"
}
}