-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpackage.json
More file actions
54 lines (54 loc) · 1.36 KB
/
package.json
File metadata and controls
54 lines (54 loc) · 1.36 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
{
"name": "vue-datatable-component",
"description": "Datatable encapsulation for Vue 1.x",
"author": "Ken Berkeley <kenberkeley@foxmail.com>",
"version": "1.0.10",
"main": "src/Datatable/index.vue",
"scripts": {
"lint": "eslint src/",
"build": "npm run lint && cross-env NODE_ENV=production browserify -s VueDataTable ./ -o dist/vue-datatable-component.min.js"
},
"repository": {
"type": "git",
"url": "https://github.com/kenberkeley/vue-datatable-component.git"
},
"keywords": [
"vue",
"datatable",
"table"
],
"dependencies": {
"lodash": "^4.17.3",
"vue-sync-query-mixin": "^1.0.5",
"vue-update-query-mixin": "^1.0.4"
},
"devDependencies": {
"babel-cli": "^6.18.0",
"babel-core": "^6.21.0",
"babel-plugin-transform-runtime": "^6.15.0",
"babel-preset-es2015": "^6.18.0",
"babel-preset-stage-2": "^6.18.0",
"babel-runtime": "^6.20.0",
"babelify": "^7.3.0",
"browserify": "^13.1.1",
"browserify-shim": "^3.8.12",
"cross-env": "^3.1.3",
"eslint": "^3.12.2",
"eslint-config-vue": "^2.0.1",
"eslint-plugin-vue": "^1.0.0",
"uglifyify": "^3.0.4",
"vueify": "^8.7.0"
},
"browserify": {
"transform": [
"browserify-shim",
"babelify",
"vueify",
"uglifyify"
]
},
"browserify-shim": {
"vue": "global:Vue"
},
"license": "MIT"
}