-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
58 lines (58 loc) · 1.53 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
{
"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": "^22.11",
"npm": ">=10"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CodeYourFuture/gitbot.git"
},
"keywords": [],
"author": "CodeYourFuture",
"contributors": [
"Jonathan Sharpe <[email protected]>"
],
"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": "^5.1.0",
"@netlify/functions": "^2.8.2",
"@octokit/webhooks-types": "^7.6.1",
"@types/eslint": "^9.6.1",
"@types/node": "^22.9.3",
"@vitest/coverage-v8": "^2.1.5",
"@vitest/eslint-plugin": "^1.1.10",
"cross-env": "^7.0.3",
"eslint": "^9.15.0",
"msw": "^2.6.6",
"rimraf": "^6.0.1",
"ts-node": "^10.9.2",
"typescript": "~5.6.3",
"typescript-eslint": "^8.15.0",
"vitest": "^2.1.4"
},
"dependencies": {
"@octokit/rest": "^21.0.2",
"@octokit/webhooks-methods": "^5.1.0",
"@slack/web-api": "^7.7.0",
"@tsconfig/node22": "^22.0.0"
}
}