forked from Happy-Coding-Clans/vue-easytable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
115 lines (115 loc) · 3.6 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
{
"name": "vue-easytable",
"version": "2.4.2",
"main": "libs/main.js",
"description": "Vue table component",
"keywords": [
"vue",
"data table",
"data grid",
"table component",
"components"
],
"author": "https://github.com/huangshuwei",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/Happy-Coding-Clans/vue-easytable.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"files": [
"libs",
"packages"
],
"scripts": {
"test": "cross-env NODE_ENV=test BABEL_ENV=test jest --config jest.config.js",
"test:cover": "cross-env NODE_ENV=test BABEL_ENV=test COVERAGE=true jest --config jest.config.js",
"codecov": "codecov",
"lint": "vue-cli-service lint",
"lint:fix": "vue-cli-service lint --fix",
"build:entry": "node build/build-entry.js",
"build:clean": "rimraf libs",
"build:locale": "node build/build-locale.js",
"build:style": "gulp build --gulpfile build/build-style.js",
"build:comps": "webpack --config build/webpack.comps.config.js",
"build:main": "webpack --config build/webpack.main.config.js",
"build:umd": "webpack --config build/webpack.umd.config.js",
"build:all": "npm run build:clean && npm run build:entry && npm run build:locale && npm run build:comps && npm run build:main && npm run build:umd && npm run build:style",
"prepare": "npm run test && npm run build:all"
},
"dependencies": {
"lodash": "^4.17.20",
"resize-observer-polyfill": "^1.5.1",
"vue": "^2.6.12",
"vue-template-compiler": "^2.6.11"
},
"peerDependencies": {
"lodash": "^4.17.20",
"vue": ">= 2.6.0"
},
"devDependencies": {
"@babel/cli": "^7.12.8",
"@babel/core": "^7.12.9",
"@babel/plugin-external-helpers": "^7.12.1",
"@babel/plugin-transform-modules-umd": "^7.12.1",
"@babel/preset-env": "^7.12.7",
"@vue/cli-plugin-babel": "~4.4.0",
"@vue/cli-plugin-eslint": "~4.4.0",
"@vue/cli-plugin-router": "~4.4.0",
"@vue/cli-plugin-unit-jest": "~4.4.0",
"@vue/cli-service": "~4.4.0",
"@vue/eslint-config-standard": "^5.1.2",
"@vue/test-utils": "^1.0.3",
"babel-eslint": "^10.1.0",
"babel-jest": "^26.6.3",
"babel-loader": "^8.2.1",
"babel-plugin-istanbul": "^6.0.0",
"babel-plugin-syntax-jsx": "^6.18.0",
"babel-plugin-transform-vue-jsx": "^3.7.0",
"babel-preset-env": "^1.7.0",
"clean-webpack-plugin": "^3.0.0",
"codecov": "^3.8.1",
"core-js": "^3.6.5",
"cross-env": "^7.0.3",
"echarts": "^4.9.0",
"eslint": "^6.7.2",
"eslint-plugin-import": "^2.20.2",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-promise": "^4.2.1",
"eslint-plugin-standard": "^4.0.0",
"eslint-plugin-vue": "^6.2.2",
"gulp": "^4.0.2",
"gulp-autoprefixer": "^7.0.1",
"gulp-cssimport": "6.0.0",
"gulp-cssmin": "0.2.0",
"gulp-less": "^4.0.1",
"jest": "^26.6.3",
"jest-serializer-vue": "^2.0.2",
"less-loader": "^6.2.0",
"lint-staged": "^9.5.0",
"mini-css-extract-plugin": "^0.9.0",
"node-sass": "^4.12.0",
"progress-bar-webpack-plugin": "^2.1.0",
"rimraf": "^3.0.2",
"sass-loader": "^8.0.2",
"terser-webpack-plugin": "^4.1.0",
"uppercamelcase": "^3.0.0",
"vue-jest": "^3.0.7",
"webpack-cli": "^3.3.12"
},
"gitHooks": {
"pre-commit": "lint-staged"
},
"lint-staged": {
"*.{js,jsx,vue}": [
"vue-cli-service lint",
"git add"
]
},
"bugs": {
"url": "https://github.com/Happy-Coding-Clans/vue-easytable/issues"
},
"homepage": "https://github.com/Happy-Coding-Clans/vue-easytable/blob/master/README.md"
}