-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 2.3 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
45
46
47
{
"name": "vuepress-theme-single-page-sections",
"version": "1.1.4",
"description": "A VuePress theme that extends the default theme by sections to create single page layouts with several sections combined on one page",
"main": "index.js",
"repository": {
"type": "git",
"url": "https://github.com/ptandler/vuepress-theme-single-page-sections.git"
},
"homepage": "https://github.com/ptandler/vuepress-theme-single-page-sections#readme",
"bugs": "https://github.com/ptandler/vuepress-theme-single-page-sections/issues",
"author": "Peter Tandler (https://github.com/ptandler)",
"keywords": [
"vue",
"vuepress"
],
"license": "MIT",
"private": false,
"scripts": {
"docs:dev": "vuepress dev --debug example",
"docs:build": "vuepress build example",
"docs:serve-build": "mkdir -pv ./tmp/ && cd ./tmp && rm -f vuepress-theme-single-page-sections && ln -s ../docs vuepress-theme-single-page-sections && echo open http://localhost:5000/vuepress-theme-single-page-sections && serve",
"release-patch:dev": "git push && git checkout master && git merge dev && yarn version --patch && git push && git checkout dev && git merge master",
"publish-patch:dev": "git push && git checkout master && git merge dev && yarn publish --patch && git push && git checkout dev && git merge master",
"release-minor:dev": "git push && git checkout master && git merge dev && yarn version --minor && git push && git checkout dev && git merge master",
"publish-minor:dev": "git push && git checkout master && git merge dev && yarn publish --minor && git push && git checkout dev && git merge master",
"postversion": "git push --tags",
"minimizeNotoColorEmojiFont": "pyftsubset ./fonts/NotoColorEmoji.ttf --text=🇬🇧🇩🇪 --output-file=./fonts/NotoColorEmoji-en-de.ttf",
"prettier": "prettier --write **/*.{ts,js,vue,css,less,scss,html,json,md}"
},
"dependencies": {
"@vuepress/theme-default": "^1.2.0",
"vue-awesome": "^4.0.2",
"vue-svg-loader": "^0.16.0",
"vuepress": "^1.3.1"
},
"devDependencies": {
"@vue/eslint-config-prettier": "^6.0.0",
"babel-eslint": "^10.1.0",
"eslint": "7",
"eslint-plugin-prettier": "^3.1.2",
"eslint-plugin-vue": "^6.2.2",
"lint-staged": "^10.0.8",
"prettier": "2",
"serve": "^11.3.0"
}
}