-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·24 lines (24 loc) · 923 Bytes
/
package.json
File metadata and controls
executable file
·24 lines (24 loc) · 923 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
{
"name": "contract-first-workshop",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"docs:clean": "rm -rf _book",
"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:clean && npm run docs:build && cd _book && git init && git commit --allow-empty -m 'Update docs' && git checkout -b gh-pages && touch .nojekyll && git add . && git commit -am 'Update docs' && git push https://github.com/rhappdev/api-first-workshop.git gh-pages --force",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"devDependencies": {
"gitbook-cli": "^2.3.0"
},
"dependencies": {
"gitbook-plugin-ga": "^1.0.1",
"gitbook-plugin-github": "^2.0.0",
"gitbook-plugin-prism": "^2.2.1"
}
}