-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
57 lines (57 loc) · 1.57 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
{
"name": "psalm-github-bot",
"version": "1.0.0",
"private": true,
"description": "Github bot that monitors comments for any links to psalm.dev/r/whatever and posts snippets and typecheck results for the snippet.",
"author": "Bruce Weirdan <[email protected]>",
"license": "ISC",
"repository": "https://github.com/weirdan/psalm-github-bot.git",
"homepage": "https://github.com/weirdan/psalm-github-bot",
"bugs": "https://github.com/weirdan/psalm-github-bot/issues",
"keywords": [
"probot",
"github",
"probot-app",
"psalm"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"dev": "FORCE_COLOR=0 nodemon -w src -e ts --exec \"npm run-script start\"",
"start": "probot run ./lib/index.js",
"lint": "standard **/*.ts --fix",
"test": "jest && standard **/*.ts",
"test:watch": "jest --watch --notify --notifyMode=change --coverage"
},
"dependencies": {
"probot": "^12.3.3"
},
"devDependencies": {
"@types/express": "^5.0.0",
"@types/jest": "^29.5.14",
"@types/nock": "^11.1.0",
"@types/node": "^22.9.0",
"@types/node-fetch": "^2.6.11",
"@typescript-eslint/parser": "^8.13.0",
"eslint": "^9.14.0",
"eslint-plugin-typescript": "^0.14.0",
"jest": "^29.7.0",
"nock": "^13.5.6",
"nodemon": "^3.1.7",
"smee-client": "^2.0.4",
"standard": "^17.1.2",
"ts-jest": "^29.2.5",
"typescript": "^5.6.3"
},
"engines": {
"node": ">= 10.17.0"
},
"standard": {
"parser": "@typescript-eslint/parser",
"env": [
"jest"
],
"plugins": [
"typescript"
]
}
}