-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.13 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.13 KB
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": "icon-tree",
"version": "1.0.4",
"description": "Graphically displays the directory and file structure of a path with icons",
"main": "bin/index.js",
"bin": {
"itree": "bin/index.js"
},
"scripts": {
"prepare": "npm run build",
"dev:win": ".\\node_modules\\.bin\\rimraf .bin\\ && tsc",
"dev": "./node_modules/.bin/rimraf .bin/ && tsc",
"build": "tsc",
"test": "jest"
},
"repository": "https://github.com/zitrocode/itree.git",
"author": "Oscar Oritz <dev.oscarortiz@gmail.com>",
"license": "MIT",
"keywords": [
"cli",
"tree",
"itree",
"command",
"icon-tree",
"tree-command"
],
"private": false,
"dependencies": {
"bytes": "^3.1.2",
"chalk": "4.1.2",
"yargs": "17.5.1"
},
"devDependencies": {
"@types/bytes": "^3.1.1",
"@types/jest": "28.1.7",
"@types/node": "18.7.6",
"@types/yargs": "17.0.11",
"@typescript-eslint/eslint-plugin": "^5.33.1",
"@typescript-eslint/parser": "^5.33.1",
"eslint": "8.22.0",
"jest": "28.1.3",
"prettier": "2.7.1",
"rimraf": "^3.0.2",
"ts-jest": "28.0.8",
"typescript": "4.7.4"
}
}