-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
18 lines (18 loc) · 952 Bytes
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
"scripts": {
"docs:prepare": "./bin/install.sh",
"docs:build": "./bin/build.sh",
"docs:watch": "npm run docs:prepare && gitbook serve",
"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 https://[email protected]/zalando-nakadi/nakadi-manual gh-pages --force",
"docs:genapi": "java -cp 'bin/s2m.jar:bin/s2m-extension-commons.jar:bin/s2m-import-files-ext.jar' io.github.swagger2markup.cli.Application convert -c ./bin/s2m-config.properties -d ./docs/api-spec-generated -i https://raw.githubusercontent.com/zalando/nakadi/master/api/nakadi-event-bus-api.yaml",
"docs:index": "node ./bin/build-index.js"
},
"devDependencies": {
"gitbook-cli": "^2.3.1"
},
"dependencies": {
"gitbook-plugin-anchors": "^0.7.1",
"yamljs": "^0.3.0",
"request": "latest"
}
}