This repository was archived by the owner on Jul 16, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
121 lines (121 loc) · 3.81 KB
/
package.json
File metadata and controls
121 lines (121 loc) · 3.81 KB
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
{
"name": "xb-ui",
"version": "1.1.0",
"description": "SchoolPal's UI components",
"main": "lib/index.js",
"style": "lib/theme-chalk/index.css",
"scripts": {
"build:file": "npm run init:icon & node build/bin/gen-entry.js",
"dev": "webpack-dev-server --config ./build/webpack.examples.js --mode=development ",
"prod": "webpack-dev-server --config ./build/webpack.examples.js --mode=production ",
"create:component": "node tools/create-component",
"create:componentMd": "node tools/create-componentMd",
"dist:style": "gulp --gulpfile packages/theme-chalk/gulpfile.js",
"dist": "npm run build:file & npm run dist:style & webpack --config build/webpack.production.js",
"init:icon": "gulp --gulpfile build/bin/gen-icon-font.js"
},
"repository": {
"type": "git",
"url": "git+ssh://[email protected]/SchoolPalCoder/xb-ui.git"
},
"keywords": [
"vue",
"xb",
"ui",
"vue-components"
],
"author": "SchoolPal Coder",
"license": "ISC",
"bugs": {
"url": "https://github.com/SchoolPalCoder/xb-ui/issues"
},
"homepage": "https://github.com/SchoolPalCoder/xb-ui#readme",
"devDependencies": {
"@types/lodash": "^4.14.136",
"@types/node": "^10.14.12",
"@types/webpack-env": "^1.14.0",
"@vue/test-utils": "^1.0.0-beta.29",
"babel": "^6.23.0",
"babel-cli": "^6.26.0",
"babel-core": "^6.14.0",
"babel-loader": "^7.1.2",
"babel-plugin-add-module-exports": "^0.2.1",
"babel-plugin-istanbul": "^5.1.4",
"babel-plugin-module-resolver": "^2.2.0",
"babel-plugin-syntax-jsx": "^6.8.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-plugin-transform-vue-jsx": "^3.7.0",
"babel-preset-env": "^1.7.0",
"babel-preset-es2015": "^6.14.0",
"chai": "^4.1.2",
"cheerio": "^1.0.0-rc.3",
"cross-env": "^5.2.0",
"css-loader": "^0.28.7",
"eslint": "^5.16.0",
"file-loader": "^2.0.0",
"gulp": "^3.9.1",
"gulp-autoprefixer": "^6.1.0",
"gulp-clean-css": "^3.9.3",
"gulp-iconfont": "^10.0.3",
"gulp-iconfont-css": "^3.0.0",
"gulp-less": "^4.0.1",
"html-loader": "^0.5.1",
"html-webpack-plugin": "^3.2.0",
"istanbul": "^0.4.5",
"istanbul-instrumenter-loader": "^3.0.1",
"json-loader": "^0.5.7",
"karma": "^3.1.4",
"karma-babel-preprocessor": "^7.0.0",
"karma-chai": "^0.1.0",
"karma-chrome-launcher": "^2.2.0",
"karma-coverage": "^1.1.2",
"karma-coverage-istanbul-reporter": "^2.0.5",
"karma-mocha": "^1.3.0",
"karma-mocha-reporter": "^2.2.5",
"karma-sinon": "^1.0.5",
"karma-sinon-chai": "^2.0.2",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "^0.0.32",
"karma-webpack": "^3.0.5",
"karma-webpack-grep": "^1.0.1",
"less": "^3.9.0",
"less-loader": "^4.1.0",
"lodash": "^4.17.14",
"markdown-it": "^8.4.2",
"markdown-it-anchor": "^5.2.4",
"markdown-it-container": "^2.0.0",
"mocha": "^5.2.0",
"postcss": "^7.0.17",
"postcss-loader": "0.11.1",
"progress-bar-webpack-plugin": "^1.12.1",
"sinon": "^6.3.3",
"sinon-chai": "^3.2.0",
"style-loader": "^0.19.0",
"svg-sprite-generator": "0.0.7",
"svg-sprite-loader": "^0.3.0",
"ts-loader": "^5.4.5",
"tslint": "^5.18.0",
"tslint-loader": "^3.6.0",
"typescript": "^3.5.3",
"url-loader": "^0.6.2",
"vue": "^2.6.10",
"vue-loader": "^15.7.0",
"vue-markdown-loader": "^2.4.1",
"vue-router": "^2.3.0",
"vue-template-compiler": "^2.6.10",
"webpack": "^4.35.3",
"webpack-cli": "^3.3.6",
"webpack-dev-server": "^3.7.2",
"webpack-merge": "^4.2.1",
"webpack-node-externals": "^1.6.0"
},
"peerDependencies": {
"vue": "^2.5.22"
},
"dependencies": {
"async-validator": "^1.11.3",
"deepmerge": "^2.2.1",
"element-resize-detector": "^1.1.15",
"vue-property-decorator": "^7.3.0"
}
}