-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpackage.json
46 lines (46 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
{
"name": "tree-node-cli",
"version": "1.6.0",
"description": "Lists the contents of directories in a tree-like format, similar to the Linux tree command.",
"keywords": [
"tree",
"cli",
"node-tree",
"command",
"file",
"directory"
],
"repository": {
"type": "git",
"url": "https://github.com/yangshun/tree-node-cli.git"
},
"author": "Yangshun Tay <[email protected]>",
"license": "MIT",
"main": "src/index.js",
"types": "types.d.ts",
"bin": {
"tree": "./bin/tree.js",
"treee": "./bin/tree.js"
},
"scripts": {
"check-all": "yarn prettier && yarn test",
"check-all:ci": "yarn prettier && yarn lint && yarn run test:ci",
"prettier": "prettier --write \"{bin,src}/**/*.js\"",
"test": "jest --coverage",
"test:ci": "jest --coverage --runInBand"
},
"files": [
"bin",
"types.d.ts"
],
"devDependencies": {
"jest": "^26.1",
"junk": "^2.1.0",
"prettier": "^2.0.5"
},
"dependencies": {
"commander": "^5.0.0",
"fast-folder-size": "1.6.1",
"pretty-bytes": "^5.6.0"
}
}