-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
49 lines (49 loc) · 1.04 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
49
{
"name": "@jpwilliams/gitree",
"version": "1.5.1",
"description": "Print a directory tree that shows Git status and ignores files dictated by .gitignore.",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\""
},
"repository": {
"type": "git",
"url": "git+https://github.com/jpwilliams/gitree.git"
},
"keywords": [
"git",
"status",
"tree",
"directory",
"modified",
"added",
"untracked",
"renamed",
"diff"
],
"author": "Jack Williams",
"license": "MIT",
"bugs": {
"url": "https://github.com/jpwilliams/gitree/issues"
},
"homepage": "https://github.com/jpwilliams/gitree#readme",
"bin": {
"gitree": "./index.js",
"gt": "./index.js"
},
"dependencies": {
"chalk": "^4.0.0",
"commander": "^4.1.1",
"execa": "^5.0.0",
"ignore": "^5.1.4",
"microloader": "^0.4.2",
"parse-git-status": "^0.1.0"
},
"devDependencies": {
"eslint": "7.21.0",
"eslint-plugin-import": "2.22.1",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "4.3.1",
"eslint-plugin-standard": "5.0.0"
}
}