-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.25 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
{
"name": "actual-bot",
"version": "1.0.0",
"private": true,
"description": "A Probot app",
"author": "matt-fidd",
"license": "ISC",
"homepage": "https://github.com//",
"keywords": [
"probot",
"github",
"probot-app"
],
"scripts": {
"build": "tsc",
"start": "probot run ./lib/index.js",
"test": "vitest --coverage --run",
"test:watch": "vitest --coverage --watch",
"test:ci": "vitest --run",
"lint": "eslint .",
"lint:fix": "eslint --fix ."
},
"dependencies": {
"probot": "^13.0.1"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^8.57.0",
"@netlify/functions": "^2.8.0",
"@octokit/types": "^13.5.0",
"@octokit/webhooks-types": "^7.5.1",
"@types/node": "^20.0.0",
"@typescript-eslint/eslint-plugin": "^7.13.1",
"@typescript-eslint/parser": "^7.13.1",
"@vitest/coverage-v8": "^2.0.2",
"eslint": "^8.57.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.1.3",
"nock": "^14.0.0-beta.5",
"prettier": "^3.3.2",
"smee-client": "^2.0.0",
"typescript": "^5.3.3",
"vitest": "^2.0.1"
},
"engines": {
"node": ">= 18"
},
"resolutions": {
"rollup": "npm:@rollup/wasm-node"
},
"type": "module"
}