-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
88 lines (88 loc) · 2.27 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
88
{
"name": "xingorg1-ui",
"version": "1.0.1-0",
"description": "A Component Library for Vue3.js.",
"main": "./dist/xingorg1.umd.min.js",
"files": [
"dist",
"packages",
"README",
"CHANGELOG",
"LICENSE"
],
"scripts": {
"dev": "npm run serve",
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"dist": "vue-cli-service build --target lib --name xingorg1 ./packages/index.js && vue-cli-service build --xingorg1 --no-clean",
"test:unit": "vue-cli-service test:unit",
"test:ui": "karma start",
"lint": "vue-cli-service lint",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"pub": "node build/git-release.sh && node build/release.sh"
},
"repository": {
"type": "git",
"url": "git+https://github.com/xingorg1/xingorg1-ui.git"
},
"unpkg": "lib/index.js",
"homepage": "",
"keywords": [
"xingorg1",
"vue3",
"components"
],
"author": "guojufeng",
"license": "MIT",
"bugs": {
"url": "https://github.com/xingorg1/xingorg1-ui/issues"
},
"dependencies": {
"core-js": "^3.6.5",
"vue": "^3.0.2"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^4.5.8",
"@vue/cli-plugin-eslint": "^4.5.8",
"@vue/cli-plugin-unit-mocha": "^4.5.8",
"@vue/cli-service": "^4.5.8",
"@vue/compiler-sfc": "^3.0.2",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/test-utils": "^2.0.0-beta.7",
"babel-eslint": "^10.1.0",
"babel-plugin-component": "^1.1.1",
"chai": "^4.2.0",
"eslint": "^6.8.0",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-vue": "^7.1.0",
"html-webpack-plugin": "^4.5.0",
"karma": "^5.2.3",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^3.1.0",
"karma-mocha": "^2.0.1",
"karma-sourcemap-loader": "^0.3.8",
"karma-spec-reporter": "0.0.32",
"karma-webpack": "^4.0.2",
"lint-staged": "^9.5.0",
"mocha": "^8.2.0",
"prettier": "^1.19.1",
"sass": "^1.28.0",
"sass-loader": "^8.0.2",
"select-version-cli": "0.0.2",
"vitepress": "^0.7.1"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,vue}": [
"vue-cli-service lint",
"git add"
]
},
"engines": {
"node": ">=8.9.1",
"npm": ">=5.5.1"
}
}