-
-
Notifications
You must be signed in to change notification settings - Fork 31
/
Copy pathpackage.json
57 lines (57 loc) · 1.79 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
{
"name": "quickjira",
"version": "1.0.0",
"private": true,
"description": "WebExtension for Chrome, Firefox, Edge, Opera and Safari to quickly open JIRA with the corresponding ticket",
"scripts": {
"prepare": "husky",
"prebuild": "rm -rf dist",
"build": "tsc",
"postbuild": "tsx scripts/postbuild.ts",
"eslint": "eslint src/js",
"stylelint": "stylelint 'src/**/*.css'",
"lint": "npm run eslint && npm run stylelint",
"lint:swift": "swiftlint",
"prerelease": "npm run test",
"release": "commit-and-tag-version -s -a",
"postrelease": "npm run build",
"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.20.0",
"@types/chrome": "^0.0.304",
"@types/eslint__js": "^8.42.3",
"@types/firefox-webext-browser": "^120.0.4",
"@types/fs-extra": "^11.0.4",
"addons-linter": "^7.8.0",
"commit-and-tag-version": "^12.5.0",
"eslint-config-prettier": "^10.0.2",
"eslint-plugin-prettier": "^5.2.2",
"fs-extra": "^11.3.0",
"husky": "^9.1.7",
"lint-staged": "^15.4.3",
"prettier": "^3.5.2",
"stylelint": "^16.14.1",
"stylelint-config-recommended": "^14.0.1",
"tsx": "^4.19.3",
"typescript": "^5.7.3",
"typescript-eslint": "^8.25.0"
},
"commit-and-tag-version": {
"scripts": {
"postbump": "tsx scripts/patch-versions.ts && prettier --write src/manifest.json && git add src/manifest.json",
"postchangelog": "prettier --write CHANGELOG.md"
}
}
}