-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
28 lines (28 loc) · 1.04 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
{
"name": "ot-docs-markdown",
"version": "1.0.0",
"description": "Markdown export of the DITA Open Toolkit documentation and sample GitBook output",
"main": "index.js",
"directories": {
"doc": "."
},
"scripts": {
"docs:prepare": "gitbook install",
"docs:watch": "npm run docs:prepare && gitbook serve",
"docs:build": "npm run docs:prepare && rm -rf _book && gitbook build",
"docs:publish": "npm run docs:build && cd _book && git init && git commit --allow-empty -m 'Update docs' && git checkout -b gh-pages && git add . && git commit -am 'Update docs' && git push [email protected]:infotexture/ot-docs-markdown.git gh-pages --force"
},
"author": "gpbl <[email protected]> (https://github.com/gpbl)",
"license": "ISC",
"devDependencies": {
"gitbook-cli": "^1.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/infotexture/ot-docs-markdown.git"
},
"bugs": {
"url": "https://github.com/infotexture/ot-docs-markdown/issues"
},
"homepage": "https://github.com/infotexture/ot-docs-markdown"
}