-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
23 lines (23 loc) · 836 Bytes
/
package.json
File metadata and controls
23 lines (23 loc) · 836 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"name": "hopp-plugin-handbook",
"version": "0.0.1",
"description": "This is a guide on building plugins for hopp. Before you can do this, it is important to understand what a build tool is and how hopp works. For that info, you can checkout [our website](http://hoppjs.com/).",
"main": "docs/index.html",
"scripts": {
"build": "rm -rf _book docs && gitbook build && mv _book docs",
"postbuild": "echo 'docs.hoppjs.com' > docs/CNAME"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hoppjs/hopp-plugin-handbook.git"
},
"author": "10244872 Canada Inc.",
"license": "MIT",
"bugs": {
"url": "https://github.com/hoppjs/hopp-plugin-handbook/issues"
},
"homepage": "https://github.com/hoppjs/hopp-plugin-handbook#readme",
"devDependencies": {
"gitbook-cli": "^2.3.0"
}
}