-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
47 lines (47 loc) · 1.16 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
46
47
{
"name": "github-wiki-sidebar",
"description": "Automaticaly generate a multi-level github wiki sidebar menu (_Sidebar.md) from the filenames in the wiki repository",
"main": "bin/github-wiki-sidebar.js",
"scripts": {
"lint": "eslint index.js bin",
"github-wiki-sidebar": "node ./bin/github-wiki-sidebar.js"
},
"bin": {
"github-wiki-sidebar": "./bin/github-wiki-sidebar.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/adriantanasa/github-wiki-sidebar.git"
},
"pre-commit": [
"lint"
],
"engines": {
"node": ">=6.11.0"
},
"keywords": [
"github",
"wiki",
"sidebar",
"github wiki",
"github wiki menu",
"github wiki sidebar",
"wiki sidebar",
"git wiki sidebar",
"sidebar generator"
],
"author": "Adrian Tanasa <adrian_tanasa@yahoo.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/adriantanasa/github-wiki-sidebar/issues"
},
"homepage": "https://github.com/adriantanasa/github-wiki-sidebar#readme",
"dependencies": {
"inquirer": "^7.0.5",
"shelljs": "^0.8.2",
"chalk": "^2.4.1"
},
"devDependencies": {
"eslint": "^4.19.1"
}
}