forked from MassTransit/MassTransit
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
27 lines (27 loc) · 984 Bytes
/
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
{
"name": "masstransit-docs",
"version": "0.1.0",
"description": "MassTransit Documentation",
"main": "index.js",
"dependencies": {
"gitbook": "^3.2.2",
"gitbook-cli": "^2.3.0"
},
"scripts": {
"docs:prepare": "gitbook install",
"docs:watch": "npm run docs:prepare && gitbook serve",
"docs:build": "npm run docs:prepare && bash -c \"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 https://github.com/MassTransit/MassTransit.git gh-pages --force"
},
"devDependencies": {},
"repository": {
"type": "git",
"url": "git+https://github.com/MassTransit/MassTransit.git"
},
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/MassTransit/MassTransit/issues"
},
"homepage": "https://github.com/MassTransit/MassTransit#readme"
}