-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
78 lines (78 loc) · 2.26 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
{
"name": "power-ui",
"version": "0.1.7",
"author": "zcating",
"scripts": {
"serve": "vue-cli-service serve --port=10000",
"build": "vue-cli-service build --target lib --name power-ui ./src/main.ts",
"build:theme": "node scripts/bin/gen-cssfile && gulp build --gulpfile components/power/theme-chalk/gulpfile.js && cp-cli components/power/theme-chalk/lib lib/theme-chalk",
"test:unit": "vue-cli-service test:unit",
"lint": "eslint -c .eslintrc.js --fix ./src ./components",
"build-description": "vue-cli-service build",
"pre-commit": ""
},
"main": "./dist/element.umd.min.js",
"files": [
"dist"
],
"dependencies": {
"@juggle/resize-observer": "^3.2.0",
"async-validator": "^3.4.0",
"core-js": "^3.6.5",
"lodash-es": "^4.17.15",
"vue": "^3.0.4",
"vue-router": "^4.0.0-beta.13"
},
"devDependencies": {
"@commitlint/cli": "^11.0.0",
"@commitlint/config-conventional": "^11.0.0",
"@types/jest": "^24.0.19",
"@types/lodash-es": "^4.17.3",
"@types/resize-observer-browser": "^0.1.4",
"@typescript-eslint/eslint-plugin": "^4.5.0",
"@typescript-eslint/parser": "^4.5.0",
"@vue/babel-plugin-jsx": "^1.0.0-rc.5",
"@vue/cli-plugin-babel": "~4.5.9",
"@vue/cli-plugin-router": "~4.5.9",
"@vue/cli-plugin-typescript": "~4.5.9",
"@vue/cli-plugin-unit-jest": "~4.5.9",
"@vue/cli-service": "~4.5.9",
"@vue/compiler-sfc": "^3.0.0-0",
"@vue/test-utils": "^2.0.0-0",
"babel-plugin-module-resolver": "^4.0.0",
"dayjs": "^1.9.6",
"declaration-bundler-webpack-plugin": "^1.0.3",
"eslint": "^7.11.0",
"gulp": "^4.0.2",
"husky": "^4.3.0",
"lint-staged": "^10.5.1",
"node-sass": "^4.14.1",
"sass-loader": "^8.0.2",
"typescript": "4.1.3",
"vue-jest": "^5.0.0-0"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged",
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS"
}
},
"keywords": [
"element",
"power",
"power-ui",
"ui",
"theme"
],
"license": "MIT",
"lint-staged": {
"*.{js, vue, scss, css, ts}": [
"eslint -c .eslintrc.js --fix ./src ./components"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/zcating/power-ui.git"
},
"types": "./dist/lib/index.d.ts"
}