-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpackage.json
37 lines (37 loc) · 1004 Bytes
/
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
34
35
36
37
{
"name": "magma-guide",
"description": "The magma guide",
"version": "0.5.0",
"author": {
"name": "Vasilis Ververis",
"email": "[email protected]"
},
"license": "CC-BY-SA-4.0",
"homepage": "https://magma.lavafeld.org/",
"bugs": "https://github.com/lavafeld/magma-guide/issues/",
"repository": {
"type": "git",
"url": "https://github.com/lavafeld/magma-guid"
},
"dependencies": {
"vuepress": "1.2.0",
"@vuepress/plugin-back-to-top": "1.2.0",
"vuepress-plugin-export": "0.2.0",
"vuepress-plugin-zooming": "1.1.6",
"vuepress-plugin-one-click-copy": "1.0.1"
},
"devDependencies": {
"vuepress-plugin-check-md": "0.0.2"
},
"keywords": [
"documentation",
"guide"
],
"scripts": {
"docs:dev": "vuepress dev docs",
"docs:build": "vuepress build docs",
"docs:build:gitlab": "VUEPRESS_BASE='/magma-guide/' vuepress build docs",
"docs:export": "vuepress export docs",
"docs:check": "vuepress check-md docs"
}
}