-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
71 lines (71 loc) · 1.88 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
63
64
65
66
67
68
69
70
71
{
"name": "git-jira-branch",
"version": "2.2.2",
"description": "Manage branches for your Jira tickets",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/ccntrq/git-jira-branch.git"
},
"bugs": "https://github.com/ccntrq/git-jira-branch/issues",
"author": {
"name": "Alexander 'ccntrq' Pankoff",
"email": "[email protected]"
},
"engines": {
"node": ">=18.0.0"
},
"volta": {
"node": "20.9.0"
},
"keywords": [
"git",
"jira",
"productivity"
],
"bin": {
"git-jira-branch": "dist/main.js",
"git-jb": "dist/main.js"
},
"files": [
"/dist"
],
"scripts": {
"start": "pnpm build && node dist/main.js",
"build": "tsc --build src",
"clean": "rimraf dist/ coverage/",
"prepack": "pnpm clean && pnpm build",
"prepare": "lefthook install",
"test": "vitest run --exclude=e2e-test",
"test:watch": "vitest --exclude=e2e-test",
"test:type-check": "tsc -p src/tsconfig.test.json --noEmit",
"pretest": "pnpm test:type-check",
"e2e-test": "vitest run --exclude=src",
"e2e-test:type-check": "tsc -p e2e-test/tsconfig.e2e-test.json",
"pree2e-test": "pnpm e2e-test:type-check",
"lint": "biome check .",
"lint:fix": "biome check . --apply"
},
"devDependencies": {
"@biomejs/biome": "1.9.4",
"@commitlint/cli": "^19.7.1",
"@commitlint/config-conventional": "^19.7.1",
"@effect/vitest": "0.19.0",
"@tsconfig/node20": "^20.1.4",
"@types/node": "^22.13.5",
"@vitest/coverage-v8": "^3.0.7",
"@vitest/ui": "^3.0.7",
"lefthook": "^1.11.0",
"rimraf": "^6.0.1",
"typescript": "^5.7.3",
"vitest": "^3.0.7"
},
"dependencies": {
"@effect/cli": "0.56.2",
"@effect/platform": "0.77.2",
"@effect/platform-node": "0.73.2",
"@effect/printer": "0.41.2",
"@effect/printer-ansi": "0.41.2",
"effect": "3.13.2"
}
}