forked from klee-contrib/focus-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
33 lines (33 loc) · 1 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
29
30
31
32
33
{
"name": "focus-docs",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "node ./node_modules/gitbook-cli/bin/gitbook.js build",
"clean": "rimraf _book",
"serve": "node ./node_modules/gitbook-cli/bin/gitbook.js serve",
"publish": "npm run clean && npm run build && cd _book && git init && git checkout -b gh-pages && git add . && git commit -m 'update book' && git push git@github.com:KleeGroup/focus-docs.git gh-pages --force"
},
"repository": {
"type": "git",
"url": "git+https://github.com/KleeGroup/focus-docs.git"
},
"keywords": [
"focusjs",
"focusjs-components"
],
"author": "Focus <focus@kleegroup.com>",
"license": "MIT",
"bugs": {
"url": "https://github.com/KleeGroup/focus-docs/issues"
},
"homepage": "https://github.com/KleeGroup/focus-docs#readme",
"dependencies": {
"gitbook-cli": "^0.3.4"
},
"devDependencies": {
"rimraf": "^2.5.2"
}
}