-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
34 lines (34 loc) · 1.13 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
{
"name": "bitbucket-pull-request-auto-delete-branch",
"version": "1.0.0",
"description": "Automatically checks the checkbox to delete the current branch after the pull request is merged on Bitbucket Cloud",
"main": "src/manifest.json",
"scripts": {
"build": "rm -f bitbucket-pull-request-auto-delete-branch.zip && npm run prettier-check && npm run zip",
"zip": "bestzip bitbucket-pull-request-auto-delete-branch.zip src/*",
"prettier-check": "prettier --check './src/**/*.js'",
"prettier-format": "prettier --write './src/**/*.js'"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hmartos/bitbucket-pull-request-auto-delete-branch.git"
},
"keywords": [
"bitbucket",
"repository",
"pull request",
"PR",
"branch",
"delete"
],
"author": "hmartos<[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/hmartos/bitbucket-pull-request-auto-delete-branch/issues"
},
"homepage": "https://github.com/hmartos/bitbucket-pull-request-auto-delete-branch#readme",
"devDependencies": {
"bestzip": "2.2.1",
"prettier": "2.8.3"
}
}