-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.56 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
{
"name": "sad-creeper",
"version": "1.0.0",
"type": "module",
"exports": "./index.js",
"private": true,
"description": "A Probot app to check for a valid server version output in newly created issues.",
"author": "Tim Brust <[email protected]>",
"license": "MIT",
"repository": "https://github.com/timbru31/sad-creeper.git",
"homepage": "https://github.com/timbru31/sad-creeper",
"bugs": "https://github.com/timbru31/sad-creeper/issues",
"keywords": [
"probot",
"github",
"probot-app"
],
"scripts": {
"build": "tsc",
"build:watch": "tsc && (tsc -w --preserveWatchOutput & nodemon)",
"dev": "npm run build:watch",
"start": "npm run build && probot run ./lib/index.js",
"lint": "eslint **/*.ts --fix",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js && eslint **/*.ts",
"test:watch": "node --experimental-vm-modules node_modules/jest/bin/jest.js --watch --notify --notifyMode=change --coverage"
},
"dependencies": {
"@probot/get-private-key": "^2.0.0",
"probot": "^13.4.4"
},
"devDependencies": {
"@eslint/js": "^9.20.0",
"@types/eslint__js": "^8.42.3",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.3",
"@vercel/node": "^5.1.14",
"eslint-config-prettier": "^10.1.1",
"eslint-plugin-prettier": "^5.2.3",
"jest": "^29.7.0",
"nock": "^14.0.1",
"nodemon": "^3.1.9",
"prettier": "^3.5.3",
"smee-client": "^3.1.1",
"ts-jest": "^29.2.6",
"typescript": "^5.8.2",
"typescript-eslint": "^8.27.0"
},
"engines": {
"node": ">=22"
}
}