UNPKG

@hotdogc1017/tree-node-cli

Version:

Lists the contents of directories in a tree-like format, similar to the Linux tree command.

51 lines (50 loc) 1.19 kB
{ "name": "@hotdogc1017/tree-node-cli", "version": "1.0.2", "description": "Lists the contents of directories in a tree-like format, similar to the Linux tree command.", "publishConfig": { "access": "public", "registry": "https://registry.npmjs.com" }, "keywords": [ "tree", "cli", "node-tree", "command", "file", "directory" ], "repository": { "type": "git", "url": "https://github.com/hotdogc1017/tree-node-cli.git" }, "author": "hotdogc1017@gmail.com", "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", "test:node": "pnpm -C test dev" }, "files": [ "bin", "types.d.ts" ], "devDependencies": { "jest": "^26.1", "junk": "^2.1.0", "prettier": "^2.0.5" }, "dependencies": { "commander": "^5.0.0", "pretty-bytes": "^5.6.0" } }