forked from MetaMask/metamask-docs
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.19 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
34
35
36
37
38
39
40
41
42
43
44
{
"private": true,
"description": "MetaMask documentation.",
"scripts": {
"dev": "yarn start",
"start": "vuepress dev docs",
"build": "vuepress build docs",
"lint": "prettier docs/guide/*.md docs/snippets/*",
"lint:fix": "yarn lint --write",
"view-info": "vuepress view-info docs",
"show-help": "vuepress --help"
},
"repository": {
"type": "git",
"url": "https://github.com/MetaMask/metamask-docs/"
},
"keywords": [
"documentation",
"vue",
"generator"
],
"author": "Austin Akers",
"license": "MIT",
"bugs": {
"url": "https://github.com/MetaMask/metamask-docs/issues"
},
"homepage": "https://github.com/MetaMask/metamask-docs",
"devDependencies": {
"@vuepress/plugin-back-to-top": "^1.0.3",
"@vuepress/plugin-google-analytics": "^1.0.3",
"@vuepress/plugin-medium-zoom": "^1.0.3",
"@vuepress/plugin-pwa": "^1.0.3",
"@vuepress/theme-vue": "^1.0.3",
"prettier": "^2.0.5",
"vue-toasted": "^1.1.25",
"vuepress": "^1.0.3",
"vuepress-plugin-flowchart": "^1.4.2",
"vuepress-plugin-redirect": "^1.2.3"
},
"dependencies": {
"vue-tabs-component": "^1.5.0",
"vuepress-plugin-tabs": "^0.3.0"
}
}