-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.2 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2.2 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
74
75
{
"name": "rebase-editor",
"version": "2.2.0-beta.1",
"description": "Simple terminal based sequence editor for git interactive rebase.",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "tsup",
"test": "mocha",
"tdd": "mocha --watch --reporter min",
"coverage": "c8 --reporter=html --reporter=text mocha",
"coverage-ci": "c8 --reporter=lcov --100 -- mocha --reporter min",
"format": "prettier --write \"src/**/*.ts\" \"test/**/*.ts\"",
"format:check": "prettier --check \"src/**/*.ts\" \"test/**/*.ts\"",
"typecheck": "tsc",
"ci": "concurrently --kill-others-on-failure --prefix-colors \"blue,green,yellow,magenta\" -n \"coverage,typecheck,lint,format\" \"npm run coverage-ci\" \"npm run typecheck\" \"npm run lint\" \"npm run format:check\"",
"lint": "eslint --cache --cache-location .cache/eslintcache \"src/**/*.ts\" \"test/**/*.ts\"",
"lint:fix": "npm run lint -- --fix",
"start": "tsx src/index.ts"
},
"files": [
"dist",
"alt-keybindings.json",
"install-editor.sh"
],
"keywords": [
"git",
"interactive",
"rebase",
"editor",
"terminal",
"console"
],
"author": "Sjur Bakka",
"license": "ISC",
"dependencies": {
"minimist": "^1.1.1",
"terminal-kit": "^3.1.1"
},
"bin": {
"rebase-editor": "dist/index.js"
},
"repository": {
"type": "git",
"url": "git://github.com/sjurba/rebase-editor.git"
},
"engines": {
"node": ">=18.0"
},
"devDependencies": {
"@types/chai": "^5.2.3",
"@types/chai-as-promised": "^8.0.2",
"@types/minimist": "^1.2.5",
"@types/mocha": "^10.0.10",
"@types/node": "^25.4.0",
"@types/sinon": "^21.0.0",
"@types/sinon-chai": "^4.0.0",
"@types/terminal-kit": "^2.5.7",
"@typescript-eslint/eslint-plugin": "^8.57.0",
"@typescript-eslint/parser": "^8.57.0",
"c8": "^11.0.0",
"chai": "^6.2.2",
"chai-as-promised": "^8.0.2",
"concurrently": "^9.2.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-chai-friendly": "^1.2.0",
"mocha": "^11.3.0",
"prettier": "^3.8.2",
"sinon": "^21.0.1",
"sinon-chai": "^4.0.1",
"tsup": "^8.5.1",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
}
}