forked from windsting/a-tour-of-cpp-2nd-cn
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
29 lines (29 loc) · 1.24 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
{
"name": "a-tour-of-cpp-2nd-cn",
"version": "0.1.0",
"description": "",
"main": "index.js",
"scripts": {
"serve": "npx honkit serve --reload",
"build": "npm run rm-website && [ -d \"_book\" ] && mv _book docs || echo \"Please use 'serve' to generate _book first!\"",
"b": "npm run rm && npx honkit build . docs",
"rm": "npm run rm-website",
"rm-website": "rm -rf docs",
"gen-idx": "tools/index_processor/index_processor.py src/idx_src.md -o src/idx.md",
"test-idx-gen": "cd tools/index_processor/ && python3 -m unittest test.py && echo \"\" || echo \"Please install python3 with a built-in unittest package\"",
"tt": "echo \"Testing tools\" && npm run test-idx-gen",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@dogatana/honkit-plugin-back-to-top-button": "^1.0.0",
"@dogatana/honkit-plugin-page-toc-button": "^1.0.0",
"@honkit/honkit-plugin-highlight": "^5.1.1",
"gitbook-plugin-copy-code-button": "^0.0.2",
"gitbook-plugin-disqus-legacy": "^1.2.3",
"gitbook-plugin-forkmegithub": "^2.2.0",
"honkit": "^5.1.1"
}
}