-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.17 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
{
"name": "portal-vue2",
"version": "1.2.1",
"description": "提供了一种在Vue项目中使用函数式调用,将弹窗组件渲染到body节点的方式",
"main": "dist/portal-vue2.esm.js",
"module": "dist/portal-vue2.esm.js",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "[email protected]:wangronglei/portal-vue2.git"
},
"scripts": {
"build": "rimraf -r dist && npm run build:rollup",
"build:rollup": "cross-env NODE_ENV=production rollup --config ./build/rollup.config.js",
"test": "vue-cli-service serve test/main.js",
"release": "standard-version"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"lint-staged": {
"*.{js,vue}": "eslint --fix --quiet",
"*.{less,vue}": "stylelint --fix --allow-empty-input"
},
"peerDependencies": {
"vue": "^2.6.0"
},
"devDependencies": {
"@babel/core": "^7.1.9",
"@babel/plugin-transform-runtime": "^7.12.10",
"@babel/polyfill": "^7.4.4",
"@babel/preset-env": "^7.12.11",
"@babel/runtime-corejs3": "^7.12.5",
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@rollup/plugin-babel": "^5.2.2",
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-node-resolve": "^11.0.1",
"@rollup/plugin-replace": "^2.3.4",
"@vue/cli-service": "^4.5.13",
"@vue/cli-plugin-babel": "^4.5.0",
"@vue/cli-plugin-eslint": "^4.5.0",
"@vue/eslint-config-prettier": "^6.0.0",
"babel-eslint": "^7.2.3",
"core-js": "^3.6.5",
"cross-env": "^7.0.3",
"eslint": "^7.24.0",
"eslint-plugin-prettier": "^3.4.0",
"eslint-plugin-vue": "^7.9.0",
"husky": "^4.2.3",
"less": "^3.13.1",
"less-loader": "^5.0.0",
"lint-staged": "^10.5.3",
"prettier": "^2.2.1",
"rollup": "^2.36.1",
"rollup-plugin-serve": "^1.1.0",
"rollup-plugin-terser": "^7.0.2",
"standard-version": "^9.1.0",
"stylelint": "^13.8.0",
"stylelint-config-prettier": "^8.0.2",
"stylelint-config-recess-order": "^2.3.0",
"stylelint-config-standard": "^20.0.0",
"vue": "^2.6.7",
"vue-template-compiler": "^2.6.11"
}
}