-
Notifications
You must be signed in to change notification settings - Fork 28
/
package.json
87 lines (87 loc) · 2.49 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "vuepress-plugin-demo-code",
"version": "1.0.0",
"description": "📝 Demo and code plugin for vuepress",
"main": "src/node/index.js",
"types": "src/node/index.d.ts",
"files": [
"src"
],
"scripts": {
"prepare": "husky install",
"cov": "open coverage/lcov-report/index.html",
"docs": "vuepress dev docs",
"docs:build": "vuepress build docs",
"lint": "eslint --fix . docs/.vuepress/ --ext .js,.vue --ignore-path .gitignore",
"test": "cross-env NODE_ENV=test jest",
"test:tdd": "cross-env NODE_ENV=test jest --watch",
"release": "HUSKY=0 standard-version",
"pub:n": "HUSKY=0 bumpp --commit 'chore: v%s' --push && npm publish --tag next"
},
"lint-staged": {
"{src,test}/**/*.{js,vue}": [
"eslint --fix"
]
},
"config": {
"commitizen": {
"path": "./node_modules/cz-conventional-changelog"
}
},
"dependencies": {
"codesandbox-import-utils": "^2.2.3",
"markdown-it-container": "^3.0.0",
"prismjs": "^1.28.0",
"vuepress-plugin-code-copy": "^1.0.6"
},
"devDependencies": {
"@babel/core": "^7.17.9",
"@babel/eslint-parser": "^7.17.0",
"@babel/preset-env": "^7.16.11",
"@commitlint/cli": "^12.1.4",
"@commitlint/config-conventional": "^12.1.4",
"@vue/test-utils": "^1.3.0",
"all-contributors-cli": "^6.20.0",
"babel-core": "^7.0.0-bridge.0",
"bumpp": "^7.1.1",
"codecov": "^3.8.3",
"cross-env": "^7.0.3",
"cz-conventional-changelog": "^3.3.0",
"eslint": "^7.32.0",
"eslint-config-standard": "^16.0.3",
"eslint-config-vue": "^2.0.2",
"eslint-plugin-import": "^2.26.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^5.2.0",
"eslint-plugin-standard": "^5.0.0",
"eslint-plugin-vue": "^7.20.0",
"gh-pages": "^3.2.3",
"husky": "^6.0.0",
"jest": "^27.5.1",
"jest-serializer-vue": "^2.0.2",
"jest-transform-stub": "^2.0.0",
"lint-staged": "^11.2.6",
"markdown-it-include": "^2.0.0",
"rimraf": "^3.0.2",
"standard-version": "^9.3.2",
"vue-jest": "^3.0.7",
"vuepress": "^1.9.7",
"vuepress-plugin-smooth-scroll": "^0.0.10"
},
"keywords": [
"vue",
"code",
"demo",
"vuepress",
"demo-code",
"documentation"
],
"repository": {
"type": "git",
"url": "git+https://github.com/BuptStEve/vuepress-plugin-demo-code.git"
},
"homepage": "https://buptsteve.github.io/vuepress-plugin-demo-code/",
"author": "StEve YoUng",
"license": "MIT",
"packageManager": "pnpm@^6"
}