-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
15 lines (15 loc) · 889 Bytes
/
package.json
File metadata and controls
15 lines (15 loc) · 889 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{
"scripts": {
"docs:dev": "vuepress dev docs --host localhost --port 8080 --temp docs/.vuepress/.temp",
"docs:build": "vuepress build docs",
"docs:deploy:windows:ci": "yarn docs:build && cd docs\\.vuepress\\dist && git init && git add -A && git commit -m \"deploy\" && git push -f git@github.com:phpwintools/wmi-scripting.git master:gh-pages",
"docs:deploy:windows": "yarn docs:build && cd docs\\.vuepress\\dist && git init && git add -A && git commit -m \"deploy\" && git push -f https://github.com/phpwintools/wmi-scripting.git master:gh-pages",
"docs:deploy:linux": "yarn docs:build && cd docs/.vuepress/dist && git init && git add -A && git commit -m \"deploy\" && git push -f https://github.com/phpwintools/wmi-scripting.git master:gh-pages"
},
"dependencies": {
"vuepress": "^1.0.4"
},
"resolutions": {
"webpack-dev-middleware": "3.6.0"
}
}