-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
50 lines (50 loc) · 1.74 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
{
"name": "browser-extension-gitbranch-jira",
"version": "1.0.1",
"description": "This is a Chrome browser extension that generates a git branch name based on the current jira issue key and the issue\r summary.",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/jolution/le-checkout-jira.git"
},
"publishConfig": {
"registry": "https://npm.pkg.github.com"
},
"scripts": {
"test": "echo \"Info: no test specified\"",
"check": "biome check ./",
"lint": "conc \"npm:lint:*(!fix)\"",
"lint:fix": "conc -m 1 \"npm:lint:*:fix\"",
"lint:css": "npx stylelint \"**/*.{css}\" --aei",
"lint:css:fix": "npm run lint:css -- --fix",
"lint:ts": "biome lint ./components/ts/*.ts",
"lint:ts:fix": "npm run lint:ts -- --write",
"lint:style": "biome check ./components/**",
"lint:style:fix": "npm run lint:style -- --write",
"format": "biome format --write ./",
"prepare": "lefthook install",
"release": "npx semantic-release"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@commitlint/cli": "^19.3.0",
"@commitlint/config-conventional": "^19.2.2",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^11.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^9.0.4",
"@semantic-release/release-notes-generator": "^12.0.0",
"concurrently": "^8.2.2",
"cspell": "^8.13.0",
"jira-prepare-commit-msg": "^1.7.2",
"lefthook": "^1.7.11",
"markdown-link-check": "^3.12.2",
"semantic-release": "^22.0.12",
"stylelint": "^16.8.1",
"stylelint-config-standard": "^36.0.1",
"typecheck": "^0.1.2",
"validate-branch-name": "^1.3.1"
}
}