forked from redhat-plumbers-in-action/plumber
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
55 lines (55 loc) · 1.59 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
{
"name": "ultimate-probot",
"version": "1.0.0",
"private": true,
"description": "A Probot app",
"author": "Jan Macku <jamacku@redhat.com>",
"license": "GPL-3.0",
"homepage": "https://github.com/jamacku/ultimate-probot",
"keywords": [
"probot",
"github",
"probot-app"
],
"scripts": {
"build": "tsc",
"start": "probot run ./dist/index.js",
"debug": "yarn && tsc && vitest && NODE_ENV=development probot run ./dist/index.js",
"test": "vitest --coverage",
"tdd": "vitest --watchAll --verbose --coverage",
"prettier": "prettier --write .",
"lint": "npm run lint:prettier",
"lint:prettier": "prettier --config '.prettierrc.yml' --ignore-path '.prettierignore' --check .",
"lint:spellcheck": "cspell --config cspell.json --gitignore --locale en '**/*.{yml,json,ts,js,md}' 'Dockerfile'",
"all": "yarn && yarn run build && yarn run test"
},
"dependencies": {
"@octokit/rest": "19.0.3",
"@octokit/types": "6.40.0",
"@sentry/integrations": "7.7.0",
"@sentry/node": "7.7.0",
"bugzilla": "3.0.0",
"class-validator": "0.13.2",
"dotenv": "16.0.1",
"probot": "12.2.5",
"probot-commands": "1.1.0",
"probot-metadata": "2.1.0"
},
"devDependencies": {
"@octokit/webhooks-types": "6.2.4",
"@types/node": "18.0.4",
"@vitest/coverage-c8": "^0.23.4",
"arkit": "1.6.4",
"cspell": "6.4.0",
"eslint": "8.20.0",
"nock": "13.2.9",
"prettier": "2.7.1",
"smee-client": "1.2.3",
"ts-node": "10.9.1",
"typescript": "4.7.4",
"vitest": "^0.23.4"
},
"engines": {
"node": ">= 10.13.0"
}
}