-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
134 lines (134 loc) · 3.86 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
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{
"name": "ce-ui",
"version": "0.0.1",
"description": "UI component library based on Vue 2.x",
"author": "Mark <[email protected]>",
"scripts": {
"lint": "vue-cli-service lint",
"build:docs": "vue-cli-service build",
"build:entry": "node build/build-entry.js ",
"build:lib": "node build/build-lib.js",
"build:locale": "node build/build-locale.js",
"build:style": "gulp build --gulpfile packages/theme-chalk/gulpfile.js && cp-cli packages/theme-chalk/lib lib/theme-chalk",
"changelog": "conventional-changelog -p angular -i CHANGELOG.md -s && git add CHANGELOG.md",
"clean": "rimraf lib && rimraf packages/*/lib",
"commit": "git-cz",
"init": "npm install && cd ./packages/theme-chalk && npm install",
"lib": "vue-cli-service build --target lib --name CeUi --dest lib packages/index.js",
"publish:docs": "node build/publish-docs.js",
"release": "sh build/release.sh",
"start": "npm run build:entry && vue-cli-service serve",
"style": "gulp --gulpfile packages/theme-chalk/gulpfile.js",
"test": "vue-cli-service test:unit"
},
"main": "lib/ce-ui.common.js",
"unpkg": "lib/index.js",
"typings": "types/index.d.ts",
"repository": {
"type": "git",
"url": "[email protected]:Vapor-Team/ce-ui.git"
},
"style": "lib/theme-chalk/index.css",
"files": [
"lib",
"packages",
"types"
],
"dependencies": {
"core-js": "^3.6.5",
"markdown-it": "^10.0.0",
"vue": "^2.6.11",
"vue-class-component": "^7.2.3",
"vue-i18n": "^8.18.2",
"vue-property-decorator": "^8.5.1"
},
"devDependencies": {
"@commitlint/cli": "^8.3.5",
"@commitlint/config-conventional": "^8.3.4",
"@popperjs/core": "^2.4.3",
"@types/jest": "^24.0.19",
"@typescript-eslint/eslint-plugin": "^2.34.0",
"@typescript-eslint/parser": "^2.34.0",
"@vue/cli-plugin-babel": "^4.4.6",
"@vue/cli-plugin-eslint": "^4.4.6",
"@vue/cli-plugin-typescript": "^4.4.6",
"@vue/cli-plugin-unit-jest": "^4.4.6",
"@vue/cli-service": "^4.4.6",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/eslint-config-typescript": "^5.0.2",
"@vue/test-utils": "^1.0.3",
"autoprefixer": "^9.8.4",
"babel-eslint": "^10.1.0",
"commitizen": "^4.1.2",
"conventional-changelog": "^3.1.21",
"cp-cli": "^2.0.0",
"cssnano": "^4.1.10",
"csstype": "^2.6.11",
"cz-conventional-changelog": "^3.2.0",
"cz-customizable": "^6.2.1",
"eslint": "^6.8.0",
"eslint-plugin-html": "^6.0.2",
"eslint-plugin-prettier": "^3.1.3",
"eslint-plugin-vue": "^6.2.2",
"extract-text-webpack-plugin": "^3.0.2",
"fs-extra": "^9.0.1",
"gh-pages": "^2.2.0",
"highlight.js": "^9.18.1",
"husky": "^4.2.5",
"lint-staged": "^10.2.11",
"markdown-it-container": "^2.0.0",
"markdown-it-decorate": "^1.2.2",
"markdown-it-task-checkbox": "^1.0.6",
"prettier": "^1.19.1",
"shelljs.exec": "^1.1.8",
"signale": "^1.4.0",
"stylus": "^0.54.7",
"stylus-loader": "^3.0.2",
"typescript": "~3.9.3",
"uppercamelcase": "^3.0.0",
"vue-markdown-loader": "^2.4.1",
"vue-router": "^3.3.4",
"vue-template-compiler": "^2.6.11"
},
"peerDependencies": {
"vue": "^2.6.11"
},
"bugs": {
"url": "https://github.com/Vapor-Team/ce-ui/issues"
},
"commitlint": {
"extends": [
"@commitlint/config-conventional"
]
},
"config": {
"commitizen": {
"path": "node_modules/cz-customizable"
},
"cz-customizable": {
"config": "./.cz-config.js"
}
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"homepage": "https://github.com/Vapor-Team/ce-ui",
"husky": {
"hooks": {
"pre-commit": "npm run lint"
}
},
"keywords": [
"ce-ui",
"vue",
"components"
],
"license": "MIT",
"lint-staged": {
"*.{js,vue,ts},!build/*": [
"eslint --fix",
"vue-cli-service lint",
"git add"
]
}
}