-
Notifications
You must be signed in to change notification settings - Fork 32
/
Copy pathpackage.json
68 lines (68 loc) · 1.88 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
{
"name": "organization-workflows-github-app",
"version": "1.0.0",
"private": true,
"description": "Need to centrally manage and run Actions workflows across multiple repositories? This app does it for you.",
"author": "Sebass van Boxel <hello@svboxel.com>",
"license": "ISC",
"repository": "https://github.com/SvanBoxel/central-workflows-bot.git",
"homepage": "https://github.com/SvanBoxel/central-workflows-bot",
"bugs": "https://github.com/SvanBoxel/central-workflows-bot/issues",
"keywords": [
"probot",
"github",
"probot-app"
],
"scripts": {
"build": "tsc",
"build:watch": "tsc && (tsc -w --preserveWatchOutput & nodemon)",
"dev": "npm run build:watch",
"start": "probot run ./lib/index.js",
"lint": "eslint src/**/*.ts --fix",
"test": "jest && npm run lint",
"test:watch": "jest --watch --notify --notifyMode=change --coverage"
},
"dependencies": {
"lodash.pick": "^4.4.0",
"mongoose": "^8.3.2",
"node-fetch": "^2.6.1",
"probot": "^11.0.1"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/lodash.pick": "^4.4.6",
"@types/nock": "^11.1.0",
"@types/node": "^20.12.7",
"@types/node-fetch": "^2.5.8",
"@typescript-eslint/eslint-plugin": "^7.7.1",
"@typescript-eslint/parser": "^7.7.1",
"eslint": "^8.57.0",
"jest": "^29.7.0",
"mockingoose": "^2.13.2",
"nock": "^12.0.0",
"nodemon": "^2.0.0",
"smee-client": "^1.1.0",
"ts-jest": "^29.1.2",
"typescript": "^5.4.5"
},
"engines": {
"node": ">= 18.x"
},
"eslintConfig": {
"parserOptions": {
"ecmaVersion": 2015,
"sourceType": "module",
"ecmaFeatures": {
"modules": true
}
},
"parser": "@typescript-eslint/parser",
"plugins": [
"@typescript-eslint"
],
"extends": [
"eslint:recommended",
"plugin:@typescript-eslint/recommended"
]
}
}