-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
95 lines (95 loc) · 2.64 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": "mg-table",
"description": "A aswesome table. Base on element-ui el-table",
"version": "1.0.0",
"author": "nillnil <[email protected]>",
"license": "MIT",
"private": false,
"main": "lib/index.js",
"scripts": {
"dev": "cross-env NODE_ENV=development webpack-dev-server --progress --inline --config build/webpack.dev.conf.js",
"build": "cross-env NODE_ENV=production env_config=prod node build/build.js",
"build:deploy": "cross-env NODE_ENV=production env_config=deploy node build/build.js",
"pub": "npm run build && npm publish",
"lint": "eslint --ext .js,.vue src",
"test": "npm run lint",
"precommit": "lint-staged",
"predeploy": "npm run build:deploy",
"deploy": "gh-pages -d dist"
},
"lint-staged": {
"src/**/*.{js,vue}": [
"eslint --fix",
"git add"
]
},
"keywords": [
"vue",
"element-ui",
"table"
],
"files": [
"src/index.js",
"src/packages",
"lib"
],
"repository": {
"type": "git",
"url": "git+https://github.com/nillnil/mg-table"
},
"bugs": {
"url": "https://github.com/nillnil/mg-table/issues"
},
"homepage": "https://nillnil.github.com/mg-table",
"devDependencies": {
"axios": "^0.18.0",
"babel-core": "^6.26.0",
"babel-eslint": "^8.2.1",
"babel-helper-vue-jsx-merge-props": "^2.0.3",
"babel-loader": "^7.1.2",
"babel-plugin-syntax-jsx": "^6.18.0",
"babel-plugin-transform-runtime": "^6.22.0",
"babel-plugin-transform-vue-jsx": "^3.5.0",
"babel-preset-env": "^1.6.0",
"babel-preset-stage-3": "^6.24.1",
"copy-webpack-plugin": "^4.5.2",
"cross-env": "^5.0.5",
"css-loader": "^0.28.7",
"element-ui": "^2.4.6",
"eslint": "4.19.1",
"eslint-friendly-formatter": "4.0.1",
"eslint-loader": "2.0.0",
"eslint-plugin-vue": "^4.7.1",
"file-loader": "^1.1.1",
"friendly-errors-webpack-plugin": "^1.7.0",
"gh-pages": "^1.2.0",
"html-webpack-plugin": "^3.2.0",
"husky": "0.14.3",
"lint-staged": "^7.2.2",
"mini-css-extract-plugin": "^0.4.2",
"mockjs": "^1.0.1-beta3",
"optimize-css-assets-webpack-plugin": "5.0.1",
"ora": "^3.0.0",
"postcss-loader": "^3.0.0",
"script-ext-html-webpack-plugin": "^2.0.1",
"shelljs": "^0.8.2",
"url-loader": "^0.5.8",
"vue": "^2.5.17",
"vue-loader": "^15.4.1",
"vue-template-compiler": "^2.5.17",
"vuex": "^3.0.1",
"webpack": "^4.17.2",
"webpack-cli": "^3.1.0",
"webpack-dev-server": "^3.1.8",
"webpack-merge": "^4.1.4"
},
"engines": {
"node": ">= 6.0.0",
"npm": ">= 3.0.0"
},
"browserslist": [
"> 1%",
"last 2 versions",
"not ie <= 8"
]
}