-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
56 lines (56 loc) · 1.49 KB
/
package.json
File metadata and controls
56 lines (56 loc) · 1.49 KB
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
{
"name": "@codeyourfuture/gitbot",
"version": "0.1.0",
"description": "Integrating GitHub and Slack via Netlify",
"type": "module",
"files": [
"lib/"
],
"scripts": {
"prebuild": "rimraf lib/",
"build": "tsc --project ./tsconfig.build.json",
"lint": "eslint --max-warnings 0 .",
"test": "vitest --run",
"test:cover": "npm test -- --coverage"
},
"engines": {
"node": "^24.11",
"npm": ">=11"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CodeYourFuture/gitbot.git"
},
"keywords": [],
"author": "CodeYourFuture",
"contributors": [
"Jonathan Sharpe <jonathan@codeyourfuture.io>"
],
"funding": "https://github.com/sponsors/CodeYourFuture",
"license": "ISC",
"bugs": {
"url": "https://github.com/CodeYourFuture/gitbot/issues"
},
"homepage": "https://github.com/CodeYourFuture/gitbot#readme",
"devDependencies": {
"@codeyourfuture/eslint-config-standard": "^8.1.1",
"@netlify/functions": "^5.1.2",
"@octokit/webhooks-types": "^7.6.1",
"@types/eslint": "^9.6.1",
"@types/node": "^24.10.15",
"@vitest/coverage-v8": "^4.0.18",
"@vitest/eslint-plugin": "^1.6.9",
"eslint": "^10.0.2",
"msw": "^2.12.10",
"rimraf": "^6.1.3",
"typescript": "^5.9.3",
"typescript-eslint": "^8.56.1",
"vitest": "^4.0.18"
},
"dependencies": {
"@octokit/rest": "^22.0.1",
"@octokit/webhooks-methods": "^6.0.0",
"@slack/web-api": "^7.14.1",
"@tsconfig/node24": "^24.0.4"
}
}