-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
95 lines (95 loc) · 2.75 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
{
"name": "@emiya/vue-component",
"version": "0.4.10",
"main": "lib/index.js",
"scripts": {
"serve": "vue-cli-service serve",
"build": "vue-cli-service build",
"build:lib": "vue-cli-service build --target lib --name emiya src/components/index.js",
"test": "vue-cli-service test:unit",
"test:unit": "vue-cli-service test:unit",
"test:e2e": "vue-cli-service test:e2e",
"lint": "vue-cli-service lint",
"comp": "webpack --config ./build/webpack.config.js",
"compile": "node ./build/run.js compile",
"pub": "node ./build/tools/publish.js",
"prepublish": "in-publish && node ./build/run.js guard"
},
"dependencies": {
"@babel/runtime": "^7.9.2",
"echarts": "^4.7.0",
"lodash": "^4.17.15",
"vue-echarts": "^5.0.0-beta.0"
},
"devDependencies": {
"@babel/plugin-proposal-optional-chaining": "^7.9.0",
"@babel/plugin-transform-object-assign": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/preset-env": "^7.9.5",
"@vue/babel-helper-vue-jsx-merge-props": "^1.0.0",
"@vue/babel-plugin-transform-vue-jsx": "^1.1.2",
"@vue/babel-preset-jsx": "^1.1.2",
"@vue/cli-plugin-babel": "^4.3.1",
"@vue/cli-plugin-e2e-nightwatch": "^4.3.1",
"@vue/cli-plugin-eslint": "^4.3.1",
"@vue/cli-plugin-unit-jest": "^4.3.1",
"@vue/cli-service": "^4.3.1",
"@vue/eslint-config-prettier": "^6.0.0",
"@vue/test-utils": "1.0.0-beta.31",
"ant-design-vue": "^1.5.2",
"autoprefixer": "^9.7.6",
"babel-eslint": "^10.1.0",
"chromedriver": "^80.0.2",
"commander": "^4.1.1",
"core-js": "^3.6.5",
"eslint": "^6.7.2",
"eslint-plugin-prettier": "^3.1.1",
"eslint-plugin-vue": "^6.2.2",
"fs-extra": "^8.1.0",
"geckodriver": "^1.19.1",
"gulp": "^4.0.2",
"gulp-babel": "^8.0.0",
"gulp-less": "^4.0.1",
"gulp-strip-code": "^0.1.4",
"in-publish": "^2.0.1",
"inquirer": "^7.1.0",
"jsdom": "^16.2.2",
"jsdom-global": "^3.0.2",
"less": "^3.0.4",
"less-loader": "^5.0.0",
"less-plugin-npm-import": "^2.1.0",
"lint-staged": "^9.5.0",
"merge2": "^1.3.0",
"postcss": "^7.0.27",
"prettier": "^1.19.1",
"rimraf": "^3.0.2",
"rucksack-css": "^1.0.2",
"through2": "^3.0.1",
"vue": "^2.6.11",
"vue-loader": "^15.9.1",
"vue-template-compiler": "^2.6.11",
"webpack-cli": "^3.3.11"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,vue}": [
"vue-cli-service lint",
"git add"
]
},
"description": "这是基于 Ant-design-vue 的二次封装组件",
"directories": {
"lib": "lib",
"test": "tests"
},
"keywords": [
"vueComponent",
"component",
"components",
"frontend"
],
"author": "emiya",
"license": "ISC"
}