-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 2.15 KB
/
package.json
File metadata and controls
73 lines (73 loc) · 2.15 KB
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
{
"name": "ai-clacky-workshop-tutorial",
"version": "1.0.0",
"description": "Clacky AI 编程入门教程",
"main": "index.js",
"scripts": {
"serve": "honkit serve",
"build": "honkit build",
"dev": "honkit serve --port 4000",
"clean": "rm -rf _book",
"prebuild": "npm run clean",
"postbuild": "echo 'Build completed successfully!'",
"install": "echo 'HonKit plugins installation'",
"pdf": "honkit pdf . ./output.pdf",
"epub": "honkit epub . ./output.epub",
"lint": "markdownlint **/*.md --ignore node_modules --ignore _book",
"lint:fix": "markdownlint **/*.md --ignore node_modules --ignore _book --fix",
"deploy": "npm run build && gh-pages -d _book",
"test": "npm run lint && npm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/CodingGirlsClub/ai-clacky-workshop-tutorial.git"
},
"keywords": [
"clacky-ai",
"programming",
"tutorial",
"gitbook",
"education"
],
"author": "Clacky AI Workshop",
"license": "MIT",
"devDependencies": {
"gitbook-plugin-back-to-top-button": "^0.1.4",
"gitbook-plugin-copy-code-button": "^0.0.2",
"gitbook-plugin-edit-link": "^2.0.2",
"gitbook-plugin-expandable-chapters": "^0.2.0",
"gitbook-plugin-github": "^3.0.0",
"gitbook-plugin-page-toc-button": "^0.1.1",
"gitbook-plugin-sharing": "^1.0.2",
"honkit": "^6.0.3",
"honkit-plugin-prism": "^2.5.3",
"prism-themes": "^1.9.0"
},
"directories": {
"doc": "docs"
},
"dependencies": {
"bash-color": "^0.0.4",
"commander": "^2.11.0",
"fs-extra": "^3.0.1",
"graceful-fs": "^4.2.11",
"jsonfile": "^3.0.1",
"lodash": "^4.17.4",
"minimist": "^0.0.10",
"npm": "^5.1.0",
"npmi": "^1.0.1",
"optimist": "^0.6.1",
"os-homedir": "^1.0.2",
"os-tmpdir": "^1.0.2",
"q": "^1.5.0",
"semver": "^5.3.0",
"tmp": "^0.0.31",
"universalify": "^0.1.2",
"user-home": "^2.0.0",
"wordwrap": "^0.0.3"
},
"bugs": {
"url": "https://github.com/CodingGirlsClub/ai-clacky-workshop-tutorial/issues"
},
"homepage": "https://github.com/CodingGirlsClub/ai-clacky-workshop-tutorial#readme"
}