-
Notifications
You must be signed in to change notification settings - Fork 24
/
Copy pathpackage.json
47 lines (47 loc) · 944 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": "tree-cli",
"version": "0.6.7",
"description": "List contents of directories in tree-like format.",
"author": {
"name": "Mr.Raindrop",
"email": "[email protected]",
"url": "http://github.com/MrRaindrop"
},
"main": "./tree.js",
"types": "./types/index.d.ts",
"scripts": {
"test": "mocha __test__"
},
"repository": {
"type": "git",
"url": "https://github.com/MrRaindrop/tree-cli.git"
},
"bin": {
"tree": "./bin/tree",
"treee": "./bin/tree"
},
"keywords": [
"tree",
"cli",
"tree-cli",
"cli-tree",
"node-tree",
"linux"
],
"engines": {
"node": ">=8.10.9"
},
"dependencies": {
"bluebird": "^3.4.6",
"chalk": "^1.1.3",
"cli-spinner": "^0.2.5",
"lodash.includes": "^4.3.0",
"meow": "^7.1.1",
"object-assign": "^4.1.0"
},
"devDependencies": {
"chai": "^4.2.0",
"fs-extra": "^8.1.0",
"mocha": "^8.1.3"
}
}