forked from wangdoc/ssh-tutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 727 Bytes
/
package.json
File metadata and controls
33 lines (33 loc) · 727 Bytes
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
{
"name": "ssh-tutorial",
"version": "1.0.0",
"description": "",
"main": "index.js",
"directories": {
"doc": "docs"
},
"scripts": {
"build": "loppo --site \"SSH 教程\" --id ssh --theme wangdoc",
"build-and-commit": "npm run build && npm run commit",
"commit": "gh-pages --dist dist --dest dist/ssh --branch master",
"chapter": "loppo chapter",
"server": "loppo server"
},
"husky": {
"hooks": {
"pre-push": "npm update"
}
},
"keywords": [
"documents",
"wangdoc"
],
"author": "Ruan Yifeng",
"license": "CC-BY-SA-4.0",
"dependencies": {
"gh-pages": "^3.1.0",
"husky": "^4.3.8",
"loppo": "^0.6.23",
"loppo-theme-wangdoc": "^0.5.1"
}
}