forked from ElementUI/element-theme
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
60 lines (60 loc) · 1.21 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
{
"name": "element-theme-plus",
"version": "1.0.4",
"description": "Theme generator cli tool for Element",
"bin": {
"element-theme": "./bin/element-theme",
"et": "./bin/element-theme"
},
"files": [
"bin",
"lib"
],
"main": "index.js",
"scripts": {
"test": "xo"
},
"xo": {
"space": true,
"rule": {
"semi": 0,
"unicorn/no-process-exit": 0,
"import/no-dynamic-require": 0
}
},
"repository": {
"type": "git",
"url": "[email protected]:wsfe/element-theme-plus.git"
},
"keywords": [
"element-ui",
"vue",
"theme",
"cli"
],
"bugs": {
"url": "https://github.com/ElementUI/element-theme/issues"
},
"author": "qingwei-li <[email protected]> (https://github.com/QingWei-Li)",
"engines": {
"node": ">=0.12.0"
},
"license": "MIT",
"peerDependencies": {
"element-theme-chalk": "*"
},
"dependencies": {
"commander": "^3.0.2",
"gulp": "^4.0.2",
"gulp-autoprefixer": "^7.0.0",
"gulp-cssmin": "^0.2.0",
"gulp-nop": "0.0.3",
"gulp-sass": "^4.0.2",
"gulp4-run-sequence": "^1.0.0",
"ora": "^4.0.2"
},
"devDependencies": {
"element-theme-chalk": "^2.0.0-alpha.1",
"xo": "^0.17.0"
}
}