-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 934 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
{
"name": "filetree.js",
"version": "0.0.3",
"description": "Recursively list files in directory hierarchy as a readable tree upto specified depth while excluding unwanted folder names",
"main": "filetree.js",
"bin": {
"filetree": "./filetree"
},
"scripts": {
"test": "./node_modules/mocha/bin/mocha ./filetree.spec.js"
},
"author": "Aiham Hammami",
"license": "MIT",
"dependencies": {
"yargs": "^3.27.0"
},
"devDependencies": {
"chai": "^3.3.0",
"fs-extra": "^0.24.0",
"mocha": "^2.3.3",
"sinon": "^1.17.1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/aiham/filetree.js.git"
},
"keywords": [
"file",
"directory",
"folder",
"ls",
"list",
"tree",
"resursive",
"hierarchy"
],
"bugs": {
"url": "https://github.com/aiham/filetree.js/issues"
},
"homepage": "https://github.com/aiham/filetree.js#readme"
}