-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.03 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.03 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
{
"name": "sys-tree",
"version": "1.0.6",
"description": "\"# dir tree cli\"",
"main": "file.js",
"directories": {
"test": "test"
},
"scripts": {
"dev": "ts-node ./src/fileDirTree",
"build": "tsc",
"pretty": "prettier --config .prettierrc --write \"src/**/*.{js,ts,tsx,less}\"",
"test": "echo \"Error: no test specified\" && exit 1",
"prepare": "husky install"
},
"bin": {
"stree": "./dist/fileDirTree/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PangYiMing/dirTree.git"
},
"author": "pangyiming",
"license": "ISC",
"bugs": {
"url": "https://github.com/PangYiMing/dirTree/issues"
},
"homepage": "https://github.com/PangYiMing/dirTree#readme",
"devDependencies": {
"@types/node": "^16.11.10",
"@types/uuid": "^8.3.3",
"husky": "^7.0.4",
"lint-staged": "^10.0.0",
"prettier": "^2.5.1",
"typescript": "^4.5.2"
},
"dependencies": {
"commander": "^8.3.0"
},
"lint-staged": {
"*.{ts,css,md}": "prettier --write"
}
}