-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
47 lines (47 loc) · 962 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
42
43
44
45
46
47
{
"name": "indexifier",
"description": "Generate an index from a directory",
"main": "index.js",
"bin": "bin/index.js",
"engines": {
"node": ">=6.1"
},
"scripts": {
"test": "jest",
"tdd": "jest --watch"
},
"keywords": [
"index",
"generate",
"index.html",
"dirtree",
"tree",
"cli",
"filetree",
"directory-tree",
"directory-index"
],
"author": "Joscha Feth <[email protected]>",
"license": "MIT",
"dependencies": {
"archy": "^1.0.0",
"commander": "^5.0.0",
"create-error": "^0.3.1",
"directory-tree": "^2.2.4"
},
"devDependencies": {
"cz-conventional-changelog": "^3.1.0",
"jest": "^25.4.0",
"semantic-release": "^19.0.3"
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"repository": {
"type": "git",
"url": "https://github.com/joscha/indexifier.git"
},
"version": "0.0.0-development"
}