-
Notifications
You must be signed in to change notification settings - Fork 25
/
Copy pathpackage.json
38 lines (38 loc) · 1.5 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
{
"name": "creator-api-docs",
"version": "1.0.0",
"description": "This repo is for hosting Cocos Creator API website with [Gitbook](https://gitbook.com).",
"main": "index.js",
"dependencies": {
"commander": "^2.12.2",
"del": "^3.0.0",
"event-stream": "3.3.4",
"firedoc": "github:cocos-creator/firedoc#gitbook",
"fs-extra": "^6.0.0",
"gitbook-plugin-anchorjs": "^2.1.0",
"gitbook-plugin-github-issue-feedback-language-custom": "git+https://github.com/cocos-creator/gitbook-plugin-github-issue-feedback.git",
"gitbook-plugin-search-title": "0.0.2",
"gitbook-plugin-sharing": "^1.0.2",
"gitbook-plugin-splitter": "0.0.8",
"gitbook-plugin-theme-default-customize": "git+https://github.com/cocos-creator/theme-default.git",
"globby": "^8.0.1",
"gulp": "^4.0.2"
},
"scripts": {
"build-md-zh": "gulp build-md --lang zh --engine ../fireball/engine",
"build-md-en": "gulp build-md --lang en --engine ../fireball/engine",
"build-md": "npm run build-md-zh && npm run build-md-en",
"build-tsd": "gulp build-tsd --engine ../fireball/engine --dest ../fireball/utils/api/creator.d.ts",
"build": "gitbook build",
"upload": "gulp publish --dest /Volumes/creator/api",
"publish": "npm run build && npm run upload",
"preview": "gulp preview",
"restore-ignore": "gulp restore-ignore"
},
"repository": {
"type": "git",
"url": "https://www.github.com/cocos-creator/creator-api-docs.git"
},
"author": "Cocos Creator",
"license": "ISC"
}