-
Notifications
You must be signed in to change notification settings - Fork 8
/
package.json
49 lines (49 loc) · 1.37 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
{
"name": "el-table-plus",
"version": "0.4.2",
"description": "A high-level table component, integrating el-table and el-pagination of Element UI.",
"keywords": [
"vue",
"component",
"element"
],
"main": "lib/index.js",
"files": [
"lib"
],
"scripts": {
"build": "babel ./src --out-dir ./lib && cp ./src/index.css ./lib",
"clean": "rimraf ./lib",
"lint": "eslint . --ext .js",
"lint:fix": "npm run lint -- --fix",
"precommit": "npm run lint:fix",
"prepublishOnly": "npm run clean && npm run build && npm run lint"
},
"peerDependencies": {
"vue": "^2.4.0",
"element-ui": "^1.0.0 || ^2.0.0"
},
"devDependencies": {
"babel-cli": "^6.24.1",
"babel-core": "^6.25.0",
"babel-eslint": "^7.2.3",
"babel-helper-vue-jsx-merge-props": "^2.0.2",
"babel-loader": "^7.1.0",
"babel-plugin-syntax-jsx": "^6.18.0",
"babel-plugin-transform-runtime": "^6.23.0",
"babel-plugin-transform-vue-jsx": "^3.4.3",
"babel-preset-es2015": "^6.24.1",
"babel-preset-stage-0": "^6.24.1",
"eslint": "^4.0.0",
"eslint-config-elemefe": "^0.3.0",
"husky": "^0.13.4",
"rimraf": "^2.6.1"
},
"author": "Chikara Chan",
"homepage": "https://github.com/chikara-chan/el-table-plus",
"repository": {
"type": "git",
"url": "https://github.com/chikara-chan/el-table-plus.git"
},
"license": "MIT"
}