-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpackage.json
62 lines (62 loc) · 1.73 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
{
"name": "renovate-approve-bot-bitbucket-cloud",
"description": "A job to approve Pull Requests from Renovate Bot on Bitbucket Cloud.",
"private": true,
"scripts": {
"eslint": "eslint --ext .js .",
"eslint-fix": "eslint --ext .js --fix .",
"jest": "jest",
"lint": "run-s eslint prettier",
"lint-fix": "run-s eslint-fix prettier-fix",
"prettier": "prettier --check \"**/*.{js,json,md,yml}\"",
"prettier-fix": "prettier --write \"**/*.{js,json,md,yml}\"",
"start": "node ./index.js",
"test": "run-s lint jest"
},
"repository": {
"type": "git",
"url": "https://github.com/renovatebot/renovate-approve-bot-bitbucket-cloud.git"
},
"keywords": [
"automerge",
"bitbucket-cloud",
"bitbucket",
"bot",
"renovate"
],
"author": "Maxime Brunet",
"contributors": [
"HonkingGoose",
"Michael Kriese <michael.kriese@visualon.de>"
],
"license": "ISC",
"bugs": {
"url": "https://github.com/renovatebot/renovate-approve-bot-bitbucket-cloud/issues"
},
"engines": {
"node": "^18.12.0 || >=20.0.0",
"npm": "^10.7.0"
},
"dependencies": {
"bunyan": "1.8.15",
"got": "11.8.6"
},
"devDependencies": {
"@semantic-release/exec": "7.0.3",
"babel-plugin-rewire": "1.2.0",
"conventional-changelog-conventionalcommits": "8.0.0",
"eslint": "8.57.1",
"eslint-config-airbnb-base": "15.0.0",
"eslint-config-prettier": "10.0.1",
"eslint-formatter-gha": "1.5.2",
"eslint-plugin-import": "2.31.0",
"eslint-plugin-jest": "28.11.0",
"eslint-plugin-promise": "7.2.1",
"jest": "29.7.0",
"nock": "14.0.1",
"npm-run-all2": "7.0.2",
"prettier": "3.5.2",
"semantic-release": "24.2.3"
},
"packageManager": "npm@10.8.0"
}