-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.32 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
{
"name": "dir2tree",
"version": "0.3.2",
"source": "src/index.js",
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"type": "module",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "node Automation/index.js",
"build": "rollup -c rollup.config.js"
},
"author": "zakaria elalaoui (https://github.com/zakarialaoui10)",
"description": "a user-friendly Node.js tool for creating organized directory trees from a root directory. It offers customization options for tailored tree generation and content analysis",
"keywords": [
"directory",
"tree",
"structure",
"filesystem",
"file management",
"directory tree",
"json"
],
"repository": {
"type": "git",
"url": "git+https://github.com/zakarialaoui10/dir2tree.git"
},
"homepage": "https://github.com/zakarialaoui10/dir2tree",
"bugs": {
"url": "https://github.com/zakarialaoui10/dir2tree/issues"
},
"license": "MIT",
"dependencies": {
"mapfun": "^0.9.17"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^25.0.7",
"@rollup/plugin-node-resolve": "^15.2.3",
"rollup": "^4.1.5"
}
}