forked from sjurba/rebase-editor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
46 lines (46 loc) · 1.02 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
{
"name": "rebase-editor",
"version": "2.0.5",
"description": "Simple terminal based sequence editor for git interactive rebase.",
"main": "index.js",
"scripts": {
"test": "mocha",
"tdd": "mocha --watch --reporter min",
"cover": "istanbul cover _mocha",
"coveralls": "npm run cover -- --report lcovonly && cat ./coverage/lcov.info | coveralls"
},
"keywords": [
"git",
"interactive",
"rebase",
"editor",
"terminal",
"console"
],
"author": "Sjur Bakka",
"license": "ISC",
"dependencies": {
"minimist": "^1.1.1",
"terminal-kit": "^1.0.3"
},
"bin": {
"rebase-editor": "index.js"
},
"repository": {
"type": "git",
"url": "git://github.com/sjurba/rebase-editor.git"
},
"engines": {
"node": ">=6.0"
},
"devDependencies": {
"chai": "^3.5.0",
"chai-as-promised": "^6.0.0",
"chai-sinon": "^2.8.1",
"coveralls": "^2.12.0",
"istanbul": "^0.4.5",
"mocha": "^3.2.0",
"mocha-lcov-reporter": "^1.3.0",
"sinon": "^2.1.0"
}
}