-
-
Notifications
You must be signed in to change notification settings - Fork 31
/
package.json
46 lines (46 loc) · 1.46 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
{
"name": "quickjira",
"version": "0.11.2",
"private": true,
"description": "WebExtension for Chrome, Firefox, Edge and Opera to quickly open JIRA with the corresponding ticket",
"scripts": {
"prepare": "husky",
"prebuild": "rm -rf dist",
"build": "tsc",
"postbuild": "rsync -av --exclude='js' src/ dist",
"eslint": "eslint 'src/js/**/*.ts'",
"stylelint": "stylelint --allow-empty-input 'src/**/*.css'",
"lint": "npm run eslint && npm run stylelint",
"prerelease": "npm run test && npm run build",
"release": "commit-and-tag-version -s",
"pretest": "npm run lint",
"test": "echo soon!"
},
"repository": {
"type": "git",
"url": "git+https://github.com/timbru31/quickjira.git"
},
"author": "Tim Brust <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/timbru31/quickjira/issues"
},
"homepage": "https://github.com/timbru31/quickjira#readme",
"devDependencies": {
"@eslint/js": "^9.15.0",
"@types/chrome": "^0.0.287",
"@types/eslint__js": "^8.42.3",
"@types/firefox-webext-browser": "^120.0.4",
"addons-linter": "^7.5.0",
"commit-and-tag-version": "^12.5.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"husky": "^9.1.7",
"lint-staged": "^15.2.10",
"prettier": "^3.4.1",
"stylelint": "^16.10.0",
"stylelint-config-recommended": "^14.0.1",
"typescript": "^5.7.2",
"typescript-eslint": "^8.16.0"
}
}