-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
47 lines (47 loc) · 1013 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
46
47
{
"name": "gitopen",
"version": "3.3.0",
"description": "Open git remote url in web browser from terminal.",
"main": "lib/index.js",
"bin": {
"gitopen": "bin/gitopen",
"svnopen": "bin/svnopen",
"hgopen": "bin/hgopen"
},
"scripts": {
"test": "make test",
"lint": "eslint --fix bin lib test"
},
"repository": {
"type": "git",
"url": "https://github.com/hotoo/gitopen.git"
},
"keywords": [
"git",
"svn",
"hg",
"open",
"browser",
"remote"
],
"author": "闲耘 <hotoo.cn@gmail.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/hotoo/gitopen/issues"
},
"homepage": "https://github.com/hotoo/gitopen",
"dependencies": {
"commander": "^2.8.1",
"deepmerge": "^4.2.2",
"inquirer": "^8.2.2",
"js-yaml": "^4.1.0",
"update-notifier": "^2.1.0"
},
"devDependencies": {
"coveralls": "^2.11.3",
"eslint": "^6.6.0",
"istanbul": "^0.3.17",
"mocha": "^2.2.5",
"should": "^7.0.1"
}
}