-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
88 lines (88 loc) · 2.16 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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "ohmyzsh-bot",
"version": "3.0.4",
"description": "A bot to manage the ohmyzsh project",
"author": "Marc Cornellà <[email protected]>",
"license": "ISC",
"repository": "https://github.com/ohmyzsh/ohmyzsh-bot.git",
"homepage": "https://github.com/ohmyzsh/ohmyzsh-bot",
"bugs": "https://github.com/ohmyzsh/ohmyzsh-bot/issues",
"keywords": [
"probot",
"github",
"probot-app"
],
"scripts": {
"build": "tsc -p tsconfig.json",
"dev": "nodemon --watch src -e js,ts,json --exec \"npm run build && npm run start\"",
"lint": "standardx --fix '**/*.ts'",
"start": "probot run ./lib/index.js",
"test": "jest && standardx '**/*.ts'",
"test:watch": "jest --watch --notify --notifyMode=change --coverage"
},
"dependencies": {
"@types/nock": "^11.1.0",
"@types/node": "^22.9.0",
"nock": "^13.5.6",
"probot": "^13.3.10",
"typescript": "^5.6.3"
},
"devDependencies": {
"@types/debug": "^4.1.12",
"@types/jest": "^29.5.14",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"@typescript-eslint/parser": "^8.13.0",
"eslint-import-resolver-typescript": "^3.6.3",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-typescript": "^0.14.0",
"jest": "^29.7.0",
"nodemon": "^3.1.7",
"smee-client": "^2.0.4",
"standardx": "^7.0.0",
"ts-jest": "^29.2.5",
"typescript-eslint-parser": "^22.0.0"
},
"overrides": {
"smee-client": {
"eventsource": "2.0.2"
}
},
"engines": {
"node": ">= 8.3.0"
},
"standardx": {
"parser": "@typescript-eslint/parser",
"env": [
"jest"
],
"plugins": [
"typescript",
"@typescript-eslint/eslint-plugin"
]
},
"eslintConfig": {
"root": true,
"plugins": [
"import"
],
"rules": {
"no-unused-vars": "off",
"no-undef": "off",
"import/no-unresolved": "error",
"@typescript-eslint/no-unused-vars": "error"
},
"settings": {
"import/parsers": {
"@typescript-eslint/parser": [
".ts",
".tsx"
]
},
"import/resolver": {
"typescript": {
"alwaysTryTypes": true
}
}
}
}
}