-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.14 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 2.14 KB
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
{
"name": "vue-filter-table-component",
"version": "0.1.40",
"private": false,
"homepage": "https://github.com/vccampbell/vue-table-component.git",
"scripts": {
"serve": "vue-cli-service serve",
"build-bundle": "vue-cli-service build --target lib --name vue-table-lib ./src/index.js",
"build": "vue-cli-service build",
"deploy": "gh-pages -d dist",
"lint": "vue-cli-service lint"
},
"dependencies": {
"@fortawesome/fontawesome-svg-core": "^1.2.25",
"@fortawesome/free-solid-svg-icons": "^5.11.2",
"@fortawesome/vue-fontawesome": "^0.1.7",
"core-js": "^2.6.5",
"vue": "^2.6.10"
},
"devDependencies": {
"@vue/cli-plugin-babel": "^3.0.1",
"@vue/cli-plugin-eslint": "^3.0.1",
"@vue/cli-service": "^3.0.1",
"babel-eslint": "^10.0.1",
"eslint": "^5.16.0",
"eslint-plugin-vue": "^5.0.0",
"gh-pages": "^2.1.1",
"node-sass": "^4.14.1",
"sass-loader": "^8.0.0",
"style-resources-loader": "^1.2.1",
"vue-cli-plugin-style-resources-loader": "^0.1.3",
"vue-template-compiler": "^2.6.10"
},
"eslintConfig": {
"root": true,
"env": {
"node": true
},
"extends": [
"plugin:vue/essential",
"eslint:recommended"
],
"rules": {},
"parserOptions": {
"parser": "babel-eslint"
}
},
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions"
],
"description": "A Vue component to display tabular data. Supports sorting, paging and filtering. Base structure from: [github](https://github.com/ozoono/vue-table-component)",
"main_old": "babel.config.js",
"files": [
"dist/*",
"src/*",
"public/*",
"*.json",
"*.js"
],
"main": "./dist/vue-table-lib.common.js",
"directories": {
"doc": "docs"
},
"repository": {
"type": "git",
"url": "git+https://github.com/vccampbell/vue-table-component.git"
},
"keywords": [
"vue",
"component",
"table",
"sorting",
"filtering",
"paging"
],
"author": "Craig Campbell",
"license": "ISC",
"bugs": {
"url": "https://github.com/vccampbell/vue-table-component/issues"
}
}