forked from btcpayserver/btcpayserver-doc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
44 lines (44 loc) · 1.91 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
{
"name": "btcpayserver-docs",
"version": "1.0.0",
"description": "BTCPay Server Official Documentation",
"author": "BTCPay Server",
"license": "MIT",
"bugs": "https://github.com/btcpayserver/btcpayserver-doc/issues",
"homepage": "https://github.com/btcpayserver/btcpayserver-doc",
"repository": {
"type": "git",
"url": "git+https://github.com/btcpayserver/btcpayserver-doc.git"
},
"keywords": [
"btcpayserver"
],
"config": {
"dist": "docs/.vuepress/dist",
"port": "8080",
"linkcheck": "blc -ro --filter-level 2 --requests 1 --exclude btcpayserver-doc/edit/master/docs --exclude btcpayserver-doc/issues/new --exclude directory.btcpayserver.org --exclude foundation.btcpayserver.org --exclude install.btcpayserver.org --exclude drupal.org --exclude dyn.com --exclude facebook.com --exclude linkedin.com --exclude luxnode.io --exclude pi-hole.net --exclude t.me --exclude transifex.com --exclude wiki.ion.radar.tech"
},
"scripts": {
"prestart": "rm -rf $npm_package_config_dist",
"start": "vuepress dev docs -p $npm_package_config_port",
"build": "vuepress build docs",
"test": "jest",
"linkcheck": "start-server-and-test linkcheck:serve $npm_package_config_port linkcheck:local",
"linkcheck:serve": "serve -p $npm_package_config_port $npm_package_config_dist",
"linkcheck:local": "$npm_package_config_linkcheck http://localhost:$npm_package_config_port",
"linkcheck:prod": "$npm_package_config_linkcheck https://docs.btcpayserver.org",
"predeploy": "./prepare-deployment.sh"
},
"devDependencies": {
"@vuepress/plugin-back-to-top": "1.5.4",
"broken-link-checker": "0.7.8",
"jest": "26.4.2",
"markdown-it-implicit-figures": "0.10.0",
"serve": "11.3.2",
"start-server-and-test": "1.11.3",
"vuepress": "1.5.4",
"vuepress-plugin-clean-urls": "1.1.2",
"vuepress-plugin-code-copy": "1.0.6",
"vuepress-plugin-medium-zoom": "1.1.9"
}
}