-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 2.38 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 2.38 KB
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
{
"name": "@template-pro/vue2-component-library",
"version": "0.0.0",
"description": "vue2 component library template",
"main": "dist/vue2-component-library.js",
"files": [
"dist/"
],
"scripts": {
"dev": "webpack-dev-server --config build/webpack.dev.js",
"dev:docs": "vuepress dev docs",
"build": "cross-env NODE_ENV=production webpack --config build/webpack.prod.js",
"build:docs": "vuepress build docs",
"lint": "eslint --ext .js --ext .vue src/",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s -r 0",
"release": "release-it --ci",
"release:beta": "release-it --preReleaseId=beta --preRelease --ci",
"release:minor": "release-it minor --ci",
"release:minor:beta": "release-it minor --preReleaseId=beta --preRelease --ci",
"prepare": "husky install"
},
"repository": {
"type": "git",
"url": "git+https://github.com/template-pro/vue2-component-library.git"
},
"keywords": [
"vue2",
"component",
"template",
"vue2-component-library"
],
"author": {
"name": "Wuxh",
"email": "[email protected]"
},
"license": "MIT",
"bugs": {
"url": "https://github.com/template-pro/vue2-component-library/issues"
},
"homepage": "https://github.com/template-pro/vue2-component-library#readme",
"peerDependencies": {
"vue": "^2"
},
"devDependencies": {
"@babel/core": "^7.17.8",
"@babel/preset-env": "^7.16.11",
"@wuxh/commitlint-config": "0.0.2",
"@wuxh/eslint-config-vue": "0.0.3",
"babel-loader": "^8.1.0",
"commitlint": "^16.2.3",
"conventional-changelog-cli": "^2.1.1",
"cross-env": "^7.0.3",
"css-loader": "^4.2.1",
"eslint": "^8.11.0",
"html-webpack-plugin": "^4.5.2",
"husky": "^7.0.4",
"lint-staged": "^12.3.7",
"mini-css-extract-plugin": "^1.6.2",
"pug": "^2.0.4",
"pug-loader": "^2.4.0",
"pug-plain-loader": "^1.1.0",
"style-loader": "^1.2.1",
"stylus": "^0.54.7",
"stylus-loader": "^3.0.2",
"typescript": "^4.6.3",
"url-loader": "^4.1.1",
"vue-loader": "^15.9.3",
"vue-template-compiler": "^2.6.14",
"vuepress": "^1.7.1",
"vuepress-plugin-demo-container": "^0.2.0",
"webpack": "^4.44.1",
"webpack-cli": "^3.3.12",
"webpack-dev-server": "^3.11.0",
"webpack-merge": "^5.1.1"
},
"lint-staged": {
"src/**/g*.{js,vue}": [
"npm run lint",
"git add ."
]
}
}