-
-
Notifications
You must be signed in to change notification settings - Fork 153
/
package.json
97 lines (97 loc) · 2.09 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
{
"name": "docsify-cli",
"version": "4.4.4",
"description": "A magical documentation generator.",
"author": {
"name": "qingwei-li",
"email": "[email protected]",
"url": "https://github.com/QingWei-Li"
},
"homepage": "https://github.com/docsifyjs/docsify-cli#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/docsifyjs/docsify-cli.git"
},
"license": "MIT",
"engines": {
"node": ">= 10",
"npm": ">= 6"
},
"main": "bin/docsify",
"bin": {
"docsify": "bin/docsify"
},
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"pretest": "npm run lint",
"test": "ava",
"prebuild": "rimraf bin",
"build": "rollup -c",
"prerelease": "npm run build",
"release": "standard-version -a"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"lint-staged": {
"*.js": [
"eslint --fix",
"git add"
]
},
"standard-version": {
"scripts": {
"postbump": "ava e2e/cli.test.js -u && git add ."
}
},
"files": [
"bin",
"lib",
"tools/locales"
],
"dependencies": {
"chalk": "^2.4.2",
"connect": "^3.6.0",
"connect-history-api-fallback": "^1.6.0",
"connect-livereload": "^0.6.0",
"cp-file": "^7.0.0",
"docsify": "^4.12.2",
"docsify-server-renderer": ">=4.13.1",
"enquirer": "^2.3.6",
"fs-extra": "^8.1.0",
"get-port": "^5.0.0",
"livereload": "^0.9.2",
"lru-cache": "^5.1.1",
"open": "^6.4.0",
"serve-static": "^1.12.1",
"update-notifier": "^4.1.0",
"yargonaut": "^1.1.2",
"yargs": "^15.3.0"
},
"devDependencies": {
"ava": "^3.13.0",
"cli-prompts-test": "^0.3.0",
"cors": "^2.8.1",
"eslint": "^6.8.0",
"eslint-config-xo-space": "^0.22.0",
"execa": "^4.0.0",
"husky": "^3.1.0",
"lint-staged": "^9.5.0",
"rimraf": "^3.0.0",
"rollup": "^1.27.13",
"rollup-plugin-executable": "^1.5.2",
"standard-version": "^9.0.0"
},
"keywords": [
"docsify",
"doc",
"docs",
"documentation",
"creator",
"generator",
"cli"
]
}