-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.42 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.42 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
{
"name": "cherrypick-interactive",
"version": "2.0.1",
"description": "Interactively cherry-pick commits that are in dev but not in main, using subject-based comparison.",
"main": "cli.js",
"bin": "cli.js",
"type": "module",
"files": [
"cli.js",
"src/"
],
"scripts": {
"lint": "biome lint .",
"format": "biome format --write .",
"check": "biome check .",
"fix": "biome check --write .",
"release": "npm publish --access public",
"test": "node --test test/**/*.test.js",
"prepare": "simple-git-hooks"
},
"simple-git-hooks": {
"pre-push": "yarn test"
},
"engines": {
"node": ">=20"
},
"dependencies": {
"chalk": "^5.6.2",
"htm": "^3.1.1",
"ink": "^6.8.0",
"inquirer": "^13.0.2",
"react": "^19.2.4",
"safe-regex2": "^5.1.0",
"semver": "^7.7.3",
"simple-git": "^3.30.0",
"update-notifier": "^7.3.1",
"yargs": "^18.0.0"
},
"devDependencies": {
"@biomejs/biome": "^1.9.4",
"simple-git-hooks": "^2.13.1"
},
"keywords": [
"git",
"cli",
"cherry-pick",
"interactive",
"devops"
],
"repository": {
"type": "git",
"url": "git+https://github.com/sulhadin/cherrypick-interactive.git"
},
"homepage": "https://github.com/sulhadin/cherrypick-interactive#readme",
"bugs": {
"url": "https://github.com/sulhadin/cherrypick-interactive/issues"
},
"license": "MIT",
"packageManager": "yarn@4.13.0"
}