forked from MicroDroid/vue-materialize-datatable
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
35 lines (35 loc) · 1.23 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
{
"name": "vue2datatable",
"version": "1.0.4",
"description": "Datatable for VueJS",
"author": "Rama Krishna <[email protected]>",
"private": false,
"license": "MIT",
"keywords": [
"Vue2",
"Datatable",
"Table Component"
],
"repository": {
"type": "git",
"url": "git+https://github.com/ramakrishnamundru/vue-datatable.git"
},
"homepage": "https://github.com/ramakrishnamundru/vue-datatable",
"bugs": {
"url": "https://github.com/ramakrishnamundru/vue-datatable/issues"
},
"main": "src/component/DataTable.vue",
"scripts": {
"dev": "cross-env NODE_ENV=development node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js",
"hot": "cross-env NODE_ENV=development node_modules/webpack-dev-server/bin/webpack-dev-server.js --inline --hot --config=node_modules/laravel-mix/setup/webpack.config.js",
"production": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --progress --hide-modules --config=node_modules/laravel-mix/setup/webpack.config.js"
},
"devDependencies": {
"cross-env": "^3.2.3",
"laravel-mix": "^0.10.0",
"vue": "^2.2.6"
},
"dependencies": {
"fuse.js": "^2.6.2"
}
}