-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
86 lines (86 loc) · 2.43 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
{
"name": "yu-ui-20181113",
"version": "0.0.3",
"description": "一个Vue UI框架",
"main": "dist/index.js",
"bin": {
"add": "build/bin/add.js",
"remove": "build/bin/remove.js"
},
"scripts": {
"add": "node build/bin/add.js",
"remove": "node build/bin/remove.js",
"build": "webpack --config build/webpack.config.js",
"dev": "webpack-dev-server --config build/webpack.config.js --watch",
"test": "karma start --single-run",
"dev-test": "karma start",
"dev:docs": "npx vuepress dev docs",
"build:docs": "npx vuepress build docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/q837477816/yu-ui.git"
},
"keywords": [
"vue,ui"
],
"author": "yuyu",
"license": "MIT",
"bugs": {
"url": "https://github.com/q837477816/yu-ui/issues"
},
"homepage": "https://github.com/q837477816/yu-ui#readme",
"dependencies": {
"@babel/runtime": "^7.3.4",
"async-validator": "^3.1.0",
"vue": "^2.6.9",
"vue-hot-reload-api": "^2.3.1"
},
"devDependencies": {
"@babel/core": "^7.3.4",
"@babel/plugin-proposal-class-properties": "^7.3.4",
"@babel/plugin-transform-runtime": "^7.3.4",
"@babel/polyfill": "^7.2.5",
"@babel/preset-env": "^7.3.4",
"@vue/component-compiler-utils": "^2.3.0",
"@vue/test-utils": "^1.0.0-beta.29",
"babel-eslint": "^10.0.2",
"babel-loader": "^8.0.5",
"chai": "^4.2.0",
"chai-spies": "^1.0.0",
"css-loader": "^2.1.0",
"eslint": "^6.1.0",
"eslint-loader": "^2.2.1",
"eslint-plugin-vue": "^5.2.3",
"html-webpack-plugin": "^3.2.0",
"jsdom": "^14.0.0",
"jsdom-global": "^3.0.2",
"karma": "^4.0.1",
"karma-chai": "^0.1.0",
"karma-chai-spies": "^0.1.4",
"karma-chrome-launcher": "^2.2.0",
"karma-mocha": "^1.3.0",
"karma-sinon-chai": "^2.0.2",
"karma-sourcemap-loader": "^0.3.7",
"karma-spec-reporter": "^0.0.32",
"karma-webpack": "^3.0.5",
"mocha": "^5.2.0",
"mocha-webpack": "^1.1.0",
"node-sass": "^4.11.0",
"sass": "^1.14.3",
"sass-loader": "^7.1.0",
"sinon": "^5.1.1",
"sinon-chai": "^3.3.0",
"uppercamelcase": "^3.0.0",
"vue-loader": "^15.7.0",
"vue-server-renderer": "^2.6.9",
"vue-template-compiler": "^2.6.9",
"vuepress": "^0.14.9",
"webpack": "^4.29.6",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.2.1"
},
"alias": {
"vue": "./node_modules/vue/dist/vue.common.js"
}
}