forked from decidim-archive/docs-workshop
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
28 lines (28 loc) · 740 Bytes
/
package.json
File metadata and controls
28 lines (28 loc) · 740 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
25
26
27
28
{
"name": "docs-workshop",
"version": "1.0.0",
"description": "Document Description",
"keywords": [
"Decidim",
"docs",
"workshop"
],
"homepage": "https://docs.decidim.org/workshop/",
"repository": "github:decidim/docs-workshop",
"license": "AGPL-3.0",
"author": "Decidim Team <hola@decidim.org> (https://decidim.org/)",
"scripts": {
"start": "gitbook serve",
"prebuild": "gitbook build . workshop",
"build": "mkdir -p _book && mv -t _book workshop",
"postbuild": "cp _redirects _book/"
},
"dependencies": {
"gitbook-plugin-anchorjs": "1.1.1",
"gitbook-plugin-edit-link": "2.0.2",
"gitbook-plugin-wiki-toc": "1.0.0"
},
"devDependencies": {
"gitbook-cli": "2.3.2"
}
}