-
Notifications
You must be signed in to change notification settings - Fork 19
/
package.json
45 lines (45 loc) · 990 Bytes
/
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
{
"name": "rebase-editor",
"version": "2.0.9",
"description": "Simple terminal based sequence editor for git interactive rebase.",
"main": "index.js",
"scripts": {
"test": "mocha",
"tdd": "mocha --watch --reporter min",
"cover": "nyc --reporter=html --reporter=text mocha",
"cover-ci": "nyc --reporter=lcov --reporter=text mocha"
},
"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": "index.js"
},
"repository": {
"type": "git",
"url": "git://github.com/sjurba/rebase-editor.git"
},
"engines": {
"node": ">=14.0"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"chai-sinon": "^2.8.1",
"coveralls": "^3.1.1",
"mocha": "^10.7.0",
"nyc": "^15.1.0",
"sinon": "^2.1.0"
}
}