-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
48 lines (48 loc) · 1.07 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
47
48
{
"name": "familiar",
"version": "0.2.0",
"description": "Familiar is a command line-based 'helper' for Git.",
"main": "index.js",
"scripts": {
"test": "./node_modules/.bin/ava",
"lint": "./node_modules/.bin/eslint ./lib/**/*.js"
},
"bin": {
"familiar": "./familiar.js",
"gitf": "./index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jrmykolyn/familiar.git"
},
"keywords": [
"familiar",
"git",
"cli",
"familiar-cli",
"git-familiar",
"git-cli"
],
"author": "Jesse R Mykolyn",
"license": "ISC",
"bugs": {
"url": "https://github.com/jrmykolyn/familiar/issues"
},
"homepage": "https://github.com/jrmykolyn/familiar#readme",
"dependencies": {
"bluebird": "^3.5.0",
"child-process-promise": "^2.2.0",
"colors": "^1.1.2",
"deepmerge": "^1.3.2",
"is-json": "^2.0.1",
"minimist": "^1.2.0",
"sfco-literati": "^1.1.1",
"simple-git": "^1.67.0"
},
"preferGlobal": true,
"devDependencies": {
"ava": "^0.20.0",
"del": "^3.0.0",
"eslint": "^4.2.0"
}
}