-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.99 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 1.99 KB
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
72
73
{
"name": "codeowners-git",
"version": "2.2.0",
"module": "src/cli.ts",
"type": "module",
"private": false,
"files": [
"dist/**/*",
"package.json"
],
"publishConfig": {
"access": "public"
},
"author": "hemandev",
"engines": {
"node": ">=18.x",
"npm": ">=8.x"
},
"keywords": [
"codeowners",
"git",
"typescript"
],
"license": "MIT",
"homepage": "https://github.com/hemandev/codeowners-git.git",
"repository": {
"type": "git",
"url": "git+https://github.com/hemandev/codeowners-git.git"
},
"scripts": {
"start": "bun run src/cli.ts",
"build": "bun build src/cli.ts --compile --outfile bin/codeowners-git",
"build:test": "bun run build && mkdir -p ~/.local/bin && cp bin/codeowners-git ~/.local/bin/cg-test",
"build:dist": "bun build src/cli.ts --outdir dist/ --target node",
"test": "bun test --watch",
"test:unit": "bun test src/**",
"test:e2e": "bun test test/e2e",
"test:e2e:local": "TEST_REPO_URL=../cg-test bun test test/e2e",
"test:all": "bun run test:unit && bun run test:e2e",
"test:ci": "bun run test:all",
"type-check": "bun tsc",
"format": "biome format --write ./src",
"lint": "biome lint ./src",
"prepublish": "bun run build:dist && bun run test:all",
"release": "bun run build:dist && bunx changeset publish"
},
"bin": {
"codeowners-git": "dist/cli.js",
"cg": "dist/cli.js"
},
"devDependencies": {
"@changesets/cli": "^2.27.12",
"@types/bun": "latest",
"@typescript-eslint/eslint-plugin": "^8.22.0",
"@typescript-eslint/parser": "^8.22.0",
"biome": "^0.3.3"
},
"peerDependencies": {
"typescript": "^5.7.3"
},
"dependencies": {
"@inquirer/prompts": "^7.2.3",
"@snyk/github-codeowners": "^1.1.0",
"@types/micromatch": "^4.0.9",
"@types/node": "^22.12.0",
"chalk": "^5.4.1",
"cli-table3": "^0.6.5",
"codeowners": "^5.1.1",
"commander": "^13.1.0",
"micromatch": "^4.0.8",
"simple-git": "^3.27.0"
}
}