-
Notifications
You must be signed in to change notification settings - Fork 5
/
package.json
27 lines (27 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
{
"name": "golang-basics-and-testing",
"version": "1.0.0",
"description": "Learning New Programming Languages First Workshop on Golang",
"main": "index.js",
"scripts": {
"docs:prepare": "gitbook install",
"docs:build": "npm run docs:prepare && rm -rf _book && gitbook build",
"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 && touch .nojekyll && git add . && git commit -am 'Update docs' && git push [email protected]:jbelmont/golang-basics-and-testing gh-pages --force"
},
"repository": {
"type": "git",
"url": "git+https://github.com/jbelmont/golang-basics-and-testing.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/jbelmont/golang-basics-and-testing/issues"
},
"homepage": "https://github.com/jbelmont/golang-basics-and-testing#readme",
"devDependencies": {
"gitbook": "^3.2.2",
"gitbook-cli": "^2.3.0"
}
}