-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
46 lines (46 loc) · 995 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
{
"name": "gituser",
"version": "2.1.2",
"description": "Easily switch git users.",
"preferGlobal": true,
"main": "index.js",
"bin": {
"gituser": "./bin/gituser.js"
},
"engines": {
"node": ">=6.14"
},
"scripts": {
"test": "standard && nyc --reporter=lcov --reporter=text-lcov ava",
"testing": "standard && ava"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WindomZ/gituser.js.git"
},
"keywords": [
"git",
"config",
"user",
"switch",
"switcher"
],
"author": "WindomZ <[email protected]>",
"license": "MIT",
"bugs": {
"url": "https://github.com/WindomZ/gituser.js/issues"
},
"homepage": "https://github.com/WindomZ/gituser.js#readme",
"dependencies": {
"colors": "^1.3.3",
"commander": "^5.0.0",
"inquirer": "^7.0.0",
"shelljs": "^0.8.3"
},
"devDependencies": {
"ava": "^3.0.0",
"coveralls": "^3.0.2",
"nyc": "^15.0.0",
"standard": "^14.0.0"
}
}